From 78c3802bbaa63f77006f235da4e954d523468425 Mon Sep 17 00:00:00 2001 From: Rudis Muiznieks Date: Tue, 7 Jun 2022 11:48:54 +0000 Subject: [PATCH] consolidated some ellison configs with main configs --- herbstluftwm/autostart | 197 +++++++++++++++-------------- herbstluftwm/ellison/autostart | 97 -------------- herbstluftwm/ellison/wallpaper.jpg | Bin 39450 -> 0 bytes xorg/ellison/xinitrc | 17 --- 4 files changed, 105 insertions(+), 206 deletions(-) delete mode 100755 herbstluftwm/ellison/autostart delete mode 100644 herbstluftwm/ellison/wallpaper.jpg delete mode 100644 xorg/ellison/xinitrc diff --git a/herbstluftwm/autostart b/herbstluftwm/autostart index 31f02c6..d11bcf1 100755 --- a/herbstluftwm/autostart +++ b/herbstluftwm/autostart @@ -1,15 +1,17 @@ #!/usr/bin/env bash -# this is a simple config for herbstluftwm - +HOSTNAME=$(hostname) PATH="$PATH:$HOME/.local/bin" hc() { herbstclient "$@" } -hc new_attr string my_sticky -refresh_panel="pgrep -f 'bash.*panel\.sh' | xargs -n1 kill -s USR1" +# don't need sticky win on pinebook +if [ "$HOSTNAME" != "ellison"]; then + hc new_attr string my_sticky + refresh_panel="pgrep -f 'bash.*panel\.sh' | xargs -n1 kill -s USR1" +fi hc emit_hook reload @@ -21,92 +23,8 @@ xsetroot -solid "#080808" -cursor_name left_ptr & feh --bg-fill ~/.config/herbstluftwm/wallpaper.jpg xobpipe="$XDG_RUNTIME_DIR/xobpipe" -# remove all existing keybindings -hc keyunbind --all -hc set default_frame_layout horizontal -hc set_layout horizontal - -# keybindings -Mod=Mod4 # Use the super key as the main modifier - -hc keybind $Mod-Shift-q quit -hc keybind $Mod-Control-r reload -hc keybind $Mod-Shift-c close -hc keybind $Mod-Return spawn st -hc keybind $Mod-grave spawn $HOME/skynet/bin/quake-term -hc keybind $Mod-Control-Return spawn firefox -hc keybind Print spawn flameshot gui - -hc keybind $Mod-d spawn rofi -show drun -show-icons -hc keybind $Mod-r spawn rofi -show run -hc keybind $Mod-F1 spawn sh -c 'CM_LAUNCHER=rofi clipmenu' -hc keybind $Mod-F2 spawn rofi -show calc -modi calc -no-show-match -no-sort -hc keybind $Mod-F3 spawn sh -c 'clipctl disable; bwmenu; clipctl enable' - -hc keybind XF86AudioPlay spawn playerctl play-pause -hc keybind XF86AudioPause spawn playerctl pause-pause -hc keybind XF86AudioRaiseVolume spawn sh -c "pamixer -i 5; pamixer --get-volume >> \"$xobpipe\"; $refresh_panel" -hc keybind XF86AudioLowerVolume spawn sh -c "pamixer -d 5; pamixer --get-volume >> \"$xobpipe\"; $refresh_panel" -hc keybind XF86AudioMute spawn sh -c "pamixer -t; pamixer --get-volume-human | sed 's/muted/0/' >> \"$xobpipe\"; $refresh_panel" -hc keybind $Mod-a spawn sh -c "sh ~/skynet-old/scripts/audio-config.sh; $refresh_panel" -hc keybind XF86Launch7 spawn sh -c "sleep 0.15 && xdotool keydown ctrl key w keyup ctrl" - -# basic movement in tiling and floating mode -# focusing clients -hc keybind $Mod-Left focus left -hc keybind $Mod-Down focus down -hc keybind $Mod-Up focus up -hc keybind $Mod-Right focus right - -# moving clients in tiling and floating mode -hc keybind $Mod-Shift-Left shift left -hc keybind $Mod-Shift-Down shift down -hc keybind $Mod-Shift-Up shift up -hc keybind $Mod-Shift-Right shift right - -hc keybind $Mod-j spawn ~/skynet-old/bin/stickyctl stick -hc keybind $Mod-Shift-j spawn ~/skynet-old/bin/stickyctl unstick - -# tags -tag_names=( {1..9} 0 ) -tag_keys=( {1..9} 0 ) - -hc rename default "${tag_names[0]}" || true -for i in "${!tag_names[@]}" ; do - hc add "${tag_names[$i]}" - key="${tag_keys[$i]}" - if ! [ -z "$key" ] ; then - hc keybind "$Mod-$key" chain , lock , use_index "$i" , spawn ~/skynet-old/bin/stickyctl get-sticky , unlock - hc keybind "$Mod-Shift-$key" move_index "$i" - fi -done - -# cycle through tags -hc keybind $Mod-Control-Right use_index +1 --skip-visible -hc keybind $Mod-Control-Left use_index -1 --skip-visible - -# layouting -hc keybind $Mod-f fullscreen toggle -hc keybind $Mod-Shift-f set_attr clients.focus.floating toggle -# The following cycles through the available layouts within a frame, but skips -# layouts, if the layout change wouldn't affect the actual window positions. -# I.e. if there are two windows within a frame, the grid layout is skipped. -hc keybind $Mod-space or , and . compare tags.focus.curframe_wcount = 2 . cycle_layout +1 vertical horizontal max vertical grid , cycle_layout +1 - -# mouse -hc mouseunbind --all -hc set focus_follows_mouse true -hc set focus_follows_monitor_boundaries true -hc mousebind $Mod-Button1 move -hc mousebind $Mod-Button3 resize - -# focus -hc keybind $Mod-BackSpace cycle_monitor -hc keybind $Mod-Tab cycle_all +1 -hc keybind $Mod-Shift-Tab cycle_all -1 -hc keybind $Mod-Alt-Tab jumpto urgent - # theme +hc lock hc attr theme.tiling.reset 1 hc attr theme.floating.reset 1 hc set always_show_frame on @@ -132,6 +50,98 @@ hc set frame_normal_opacity 1 hc set frame_bg_active_color '#0000000000' hc set snap_distance 0 hc set snap_gap 0 +hc unlock + +# remove all existing keybindings +hc keyunbind --all +hc set default_frame_layout horizontal +hc set_layout horizontal + +# keybindings +Mod=Mod4 # Use the super key as the main modifier + +hc keybind $Mod-Shift-q quit +hc keybind $Mod-Control-r reload +hc keybind $Mod-Shift-c close +hc keybind $Mod-Return spawn st +hc keybind $Mod-grave spawn $HOME/skynet/bin/quake-term +hc keybind $Mod-Alt-Return spawn ~/skynet/bin/zenvim +hc keybind $Mod-Control-Return spawn firefox +hc keybind Print spawn flameshot gui +hc keybind $Mod-Tab cycle_all +1 + +hc keybind $Mod-d spawn rofi -show drun -show-icons +hc keybind $Mod-r spawn rofi -show run +hc keybind $Mod-F1 spawn sh -c 'CM_LAUNCHER=rofi clipmenu' +hc keybind $Mod-F2 spawn rofi -show calc -modi calc -no-show-match -no-sort +hc keybind $Mod-F3 spawn sh -c 'clipctl disable; bwmenu; clipctl enable' + +hc keybind XF86AudioPlay spawn playerctl play-pause +hc keybind XF86AudioPause spawn playerctl pause-pause +hc keybind XF86AudioRaiseVolume spawn sh -c "pamixer -i 5; pamixer --get-volume >> \"$xobpipe\"; $refresh_panel" +hc keybind XF86AudioLowerVolume spawn sh -c "pamixer -d 5; pamixer --get-volume >> \"$xobpipe\"; $refresh_panel" +hc keybind XF86AudioMute spawn sh -c "pamixer -t; pamixer --get-volume-human | sed 's/muted/0/' >> \"$xobpipe\"; $refresh_panel" +hc keybind $Mod-a spawn sh -c "sh ~/skynet-old/scripts/audio-config.sh; $refresh_panel" +hc keybind XF86Launch7 spawn sh -c "sleep 0.15 && xdotool keydown ctrl key w keyup ctrl" + +# mouse +hc mouseunbind --all +hc set focus_follows_mouse true +hc set focus_follows_monitor_boundaries true +hc mousebind $Mod-Button1 move +hc mousebind $Mod-Button3 resize + +# no tags on pinebook pro +if [ "$HOSTNAME" != "ellison" ]; then + # basic movement in tiling and floating mode + # focusing clients + hc keybind $Mod-Left focus left + hc keybind $Mod-Down focus down + hc keybind $Mod-Up focus up + hc keybind $Mod-Right focus right + + # moving clients in tiling and floating mode + hc keybind $Mod-Shift-Left shift left + hc keybind $Mod-Shift-Down shift down + hc keybind $Mod-Shift-Up shift up + hc keybind $Mod-Shift-Right shift right + + hc keybind $Mod-j spawn ~/skynet-old/bin/stickyctl stick + hc keybind $Mod-Shift-j spawn ~/skynet-old/bin/stickyctl unstick + + # tags + tag_names=( {1..9} 0 ) + tag_keys=( {1..9} 0 ) + + hc rename default "${tag_names[0]}" || true + for i in "${!tag_names[@]}" ; do + hc add "${tag_names[$i]}" + key="${tag_keys[$i]}" + if ! [ -z "$key" ] ; then + hc keybind "$Mod-$key" chain , lock , use_index "$i" , spawn ~/skynet-old/bin/stickyctl get-sticky , unlock + hc keybind "$Mod-Shift-$key" move_index "$i" + fi + done + + # cycle through tags + hc keybind $Mod-Control-Right use_index +1 --skip-visible + hc keybind $Mod-Control-Left use_index -1 --skip-visible + + # layouting + hc keybind $Mod-f fullscreen toggle + hc keybind $Mod-Shift-f set_attr clients.focus.floating toggle + # The following cycles through the available layouts within a frame, but skips + # layouts, if the layout change wouldn't affect the actual window positions. + # I.e. if there are two windows within a frame, the grid layout is skipped. + hc keybind $Mod-space or , and . compare tags.focus.curframe_wcount = 2 . cycle_layout +1 vertical horizontal max vertical grid , cycle_layout +1 + + + # focus + hc keybind $Mod-BackSpace cycle_monitor + hc keybind $Mod-Tab cycle_all +1 + hc keybind $Mod-Shift-Tab cycle_all -1 + hc keybind $Mod-Alt-Tab jumpto urgent +fi # rules hc unrule -F @@ -157,9 +167,12 @@ hc unlock # or simply: hc detect_monitors -# restart panel -~/.config/herbstluftwm/killpanel.sh -{ exec ~/.config/herbstluftwm/panel.sh; } & +# no panel on pinebook pro +if [ "$HOSTNAME" != "ellison" ]; then + # restart panel + ~/.config/herbstluftwm/killpanel.sh + { exec ~/.config/herbstluftwm/panel.sh; } & +fi # restart xob pgrep xob | xargs -n1 kill -9 diff --git a/herbstluftwm/ellison/autostart b/herbstluftwm/ellison/autostart deleted file mode 100755 index 51961fe..0000000 --- a/herbstluftwm/ellison/autostart +++ /dev/null @@ -1,97 +0,0 @@ -#!/usr/bin/env bash - -# this is a simple config for herbstluftwm - -hc() { - herbstclient "$@" -} - -hc emit_hook reload - -if hc silent new_attr bool my_picom_is_running; then - picom -b -fi - -xsetroot -solid "#080808" -cursor_name left_ptr & -feh --bg-fill ~/.config/herbstluftwm/wallpaper.jpg - -# theme -hc lock -hc attr theme.tiling.reset 1 -hc attr theme.floating.reset 1 -hc set always_show_frame on -hc set frame_bg_transparent off - -hc attr theme.active.color '#95e454' -hc attr theme.normal.color '#88b8f6' -hc attr theme.urgent.color '#e5796d' -hc attr theme.inner_color black -hc attr theme.border_width 1 -hc attr theme.floating.border_width 2 -hc attr theme.floating.outer_width 1 -hc attr theme.floating.outer_color black -hc attr theme.background_color '#080808' - -hc set window_gap 0 -hc set frame_padding 0 -hc set smart_window_surroundings on -hc set smart_frame_surroundings on -hc set mouse_recenter_gap 0 -hc set frame_active_opacity 1 -hc set frame_normal_opacity 1 -hc set frame_bg_active_color '#0000000000' -hc set snap_distance 0 -hc set snap_gap 0 -hc unlock - -# remove all existing keybindings -hc keyunbind --all -hc set default_frame_layout max -hc set_layout max - -# keybindings -Mod=Mod4 # Use the super key as the main modifier - -hc keybind $Mod-Shift-q quit -hc keybind $Mod-Control-r reload -hc keybind $Mod-Shift-c close -hc keybind $Mod-Return spawn st -hc keybind $Mod-Alt-Return spawn ~/skynet/bin/zenvim -hc keybind $Mod-Control-Return spawn qutebrowser -hc keybind $Mod-Tab cycle_all +1 - -hc keybind XF86AudioRaiseVolume spawn sh -c "pamixer -i 5; pamixer --get-volume >> \"$xobpipe\"; $refresh_panel" -hc keybind XF86AudioLowerVolume spawn sh -c "pamixer -d 5; pamixer --get-volume >> \"$xobpipe\"; $refresh_panel" -hc keybind XF86AudioMute spawn sh -c "pamixer -t; pamixer --get-volume-human | sed 's/muted/0/' >> \"$xobpipe\"; $refresh_panel" -hc keybind XF86PowerOff spawn battlvl -hc keybind XF86MonBrightnessUp spawn light -A 5 -hc keybind XF86MonBrightnessDown spawn light -U 5 - -# mouse -hc mouseunbind --all -hc set focus_follows_mouse true -hc set focus_follows_monitor_boundaries true -#hc mousebind $Mod-Button1 move -#hc mousebind $Mod-Button3 resize - -# rules -hc unrule -F -#hc rule class=XTerm tag=3 # move all xterms to tag 3 -hc rule focus=on # normally focus new clients -hc rule floatplacement=smart -#hc rule focus=off # normally do not focus new clients -# give focus to most common terminals -#hc rule class~'(.*[Rr]xvt.*|.*[Tt]erm|Konsole)' focus=on -hc rule windowtype~'_NET_WM_WINDOW_TYPE_(DIALOG|UTILITY|SPLASH)' floating=on -hc rule windowtype='_NET_WM_WINDOW_TYPE_DIALOG' focus=on -hc rule windowtype~'_NET_WM_WINDOW_TYPE_(NOTIFICATION|DOCK|DESKTOP)' manage=off - -hc set tree_style '╾│ ├└╼─┐' - -# unlock, just to be sure -hc unlock - -# do multi monitor setup here, e.g.: -# hc set_monitors 1280x1024+0+0 1280x1024+1280+0 -# or simply: -hc detect_monitors diff --git a/herbstluftwm/ellison/wallpaper.jpg b/herbstluftwm/ellison/wallpaper.jpg deleted file mode 100644 index 2a329d8016f289f7338d6dfcf2d42c9ef3e18358..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 39450 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 diff --git a/xorg/ellison/xinitrc b/xorg/ellison/xinitrc deleted file mode 100644 index 4da1666..0000000 --- a/xorg/ellison/xinitrc +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - -#. "$HOME/.profile" - -userresources=$HOME/.Xresources -sysresources=/etc/X11/xinit/.Xresources - -if [ -f $sysresources ]; then - xrdb -merge $sysresources -fi - -if [ -f "$userresources" ]; then - xrdb -merge "$userresources" -fi - -dunst & -exec herbstluftwm