migrate to zig 0.4.0/kwm
This commit is contained in:
parent
3ec6ae5a2c
commit
2b1ca4fd03
17 changed files with 2815 additions and 218 deletions
1400
kwm/.config/kwm/config.zon
Normal file
1400
kwm/.config/kwm/config.zon
Normal file
File diff suppressed because it is too large
Load diff
1112
kwm/.config/kwm/config.zon.def
Normal file
1112
kwm/.config/kwm/config.zon.def
Normal file
File diff suppressed because it is too large
Load diff
20
kwm/.config/kwm/init.sh
Executable file
20
kwm/.config/kwm/init.sh
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
#!/bin/sh
|
||||
|
||||
wobd
|
||||
|
||||
pgrep swaybg || swaybg -i ~/.config/kwm/wallpaper.jpg &
|
||||
pgrep dunst || dunst &
|
||||
|
||||
foot --server & # TODO: figure out systemd service
|
||||
emacs --daemon &
|
||||
|
||||
# swayidle
|
||||
pgrep swayidle || swayidle -w \
|
||||
timeout 300 '$HOME/.config/river/timeout.sh' \
|
||||
before-sleep 'swaylock -f -c 000000' &
|
||||
|
||||
# gnome-keyring (needed for nextcloud to remember login)
|
||||
dbus-update-activation-environment --all
|
||||
gnome-keyring-daemon --start --components=secrets
|
||||
|
||||
nextcloud &
|
||||
2
kwm/.config/kwm/pianobar.sh
Executable file
2
kwm/.config/kwm/pianobar.sh
Executable file
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
echo "$1" > ~/.config/pianobar/ctl
|
||||
|
Before Width: | Height: | Size: 695 KiB After Width: | Height: | Size: 695 KiB |
226
river-classic/.config/river/init
Executable file
226
river-classic/.config/river/init
Executable file
|
|
@ -0,0 +1,226 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Variables
|
||||
term="foot"
|
||||
term_client="footclient"
|
||||
term_float="foot --app-id=float -w 1120x700"
|
||||
browser="librewolf"
|
||||
email="thunderbird"
|
||||
emacs="emacsclient --create-frame --alternate-editor='emacs'"
|
||||
mod=Super
|
||||
books="$HOME/.local/bin/books.sh"
|
||||
papers="$HOME/.local/bin/papers.sh"
|
||||
config="$HOME/.config/river"
|
||||
|
||||
wobsock=$XDG_RUNTIME_DIR/wob.sock
|
||||
rm -f $wobsock && mkfifo $wobsock && tail -f $wobsock | wob &
|
||||
|
||||
# Launch things
|
||||
riverctl map normal $mod Return spawn $term_client
|
||||
riverctl map normal $mod+Shift Return spawn $term
|
||||
riverctl map normal $mod R span "bemenu-run -p launch"
|
||||
riverctl map normal $mod Semicolon spawn "bemenu-run -p launch"
|
||||
riverctl map normal $mod+Shift P spawn "$config/power_mode.sh"
|
||||
# riverctl map normal $mod+Shift P spawn "passmenu -p password"
|
||||
riverctl map normal $mod BracketRight spawn "$browser"
|
||||
riverctl map normal $mod T spawn "$email"
|
||||
riverctl map normal $mod Z spawn "$books"
|
||||
riverctl map normal $mod Y spawn "$papers"
|
||||
riverctl map normal $mod E spawn "$emacs"
|
||||
riverctl map normal $mod+Control O spawn "swaylock"
|
||||
riverctl map normal $mod B spawn "bluetoothctl connect 88:C9:E8:D7:60:85"
|
||||
riverctl map normal $mod+Shift B spawn "bluetoothctl disconnect 88:C9:E8:D7:60:85"
|
||||
riverctl map normal $mod+Control S spawn "$config/screenshot.sh clip"
|
||||
riverctl map normal $mod+Shift E spawn "$config/screenshot.sh menu"
|
||||
|
||||
# Close windows & exit wm
|
||||
riverctl map normal $mod+Shift C close
|
||||
riverctl map normal $mod+Shift Q exit
|
||||
|
||||
# view stuff
|
||||
riverctl map normal $mod J focus-view next
|
||||
riverctl map normal $mod K focus-view previous
|
||||
riverctl map normal $mod+Shift J swap next
|
||||
riverctl map normal $mod+Shift K swap previous
|
||||
|
||||
riverctl map normal $mod+Shift Space zoom
|
||||
|
||||
# monitor stuff
|
||||
riverctl map normal $mod Period focus-output next
|
||||
riverctl map normal $mod Comma focus-output previous
|
||||
riverctl map normal $mod+Shift Period send-to-output next
|
||||
riverctl map normal $mod+Shift Comma send-to-output previous
|
||||
|
||||
# mess with main
|
||||
riverctl map normal $mod H send-layout-cmd rivertile "main-ratio -0.05"
|
||||
riverctl map normal $mod L send-layout-cmd rivertile "main-ratio +0.05"
|
||||
|
||||
riverctl map normal $mod+Shift H send-layout-cmd rivertile "main-count +1"
|
||||
riverctl map normal $mod+Shift L send-layout-cmd rivertile "main-count -1"
|
||||
|
||||
# manipulate views
|
||||
riverctl map normal $mod+Alt H move left 100
|
||||
riverctl map normal $mod+Alt J move down 100
|
||||
riverctl map normal $mod+Alt K move up 100
|
||||
riverctl map normal $mod+Alt L move right 100
|
||||
|
||||
riverctl map normal $mod+Alt+Control H snap left
|
||||
riverctl map normal $mod+Alt+Control J snap down
|
||||
riverctl map normal $mod+Alt+Control K snap up
|
||||
riverctl map normal $mod+Alt+Control L snap right
|
||||
|
||||
riverctl map normal $mod+Alt+Shift H resize horizontal -100
|
||||
riverctl map normal $mod+Alt+Shift J resize vertical 100
|
||||
riverctl map normal $mod+Alt+Shift K resize vertical -100
|
||||
riverctl map normal $mod+Alt+Shift L resize horizontal 100
|
||||
|
||||
riverctl map-pointer normal $mod BTN_LEFT move-view
|
||||
riverctl map-pointer normal $mod BTN_RIGHT resize-view
|
||||
riverctl map-pointer normal $mod BTN_MIDDLE toggle-float
|
||||
|
||||
# tag stuff
|
||||
for i in $(seq 1 9)
|
||||
do
|
||||
tags=$((1 << ($i - 1)))
|
||||
|
||||
riverctl map normal $mod $i set-focused-tags $tags
|
||||
riverctl map normal $mod+Shift $i set-view-tags $tags
|
||||
riverctl map normal $mod+Control $i toggle-focused-tags $tags
|
||||
riverctl map normal $mod+Shift+Control $i toggle-view-tags $tags
|
||||
done
|
||||
|
||||
all_tags=$(((1 << 32) - 1))
|
||||
riverctl map normal $mod 0 set-focused-tags $all_tags
|
||||
riverctl map normal $mod+Shift 0 set-view-tags $all_tags
|
||||
|
||||
# toggle
|
||||
riverctl map normal $mod Space toggle-float
|
||||
riverctl map normal $mod F toggle-fullscreen
|
||||
|
||||
# change layout orientation
|
||||
riverctl map normal $mod+Control K send-layout-cmd rivertile "main-location top"
|
||||
riverctl map normal $mod+Control L send-layout-cmd rivertile "main-location right"
|
||||
riverctl map normal $mod+Control J send-layout-cmd rivertile "main-location bottom"
|
||||
riverctl map normal $mod+Control H send-layout-cmd rivertile "main-location left"
|
||||
|
||||
# passthrough mode
|
||||
riverctl declare-mode passthrough
|
||||
riverctl map normal $mod F11 enter-mode passthrough
|
||||
riverctl map passthrough $mod F11 enter-mode normal
|
||||
|
||||
# media key bindings
|
||||
for mode in normal locked
|
||||
do
|
||||
riverctl map $mode None XF86Eject spawn 'eject -T'
|
||||
|
||||
riverctl map $mode None XF86AudioRaiseVolume spawn "~/.config/river/volume.sh up 0.02"
|
||||
riverctl map $mode None XF86AudioLowerVolume spawn "~/.config/river/volume.sh down 0.02"
|
||||
riverctl map $mode Shift XF86AudioRaiseVolume spawn "~/.config/river/volume.sh up 0.01"
|
||||
riverctl map $mode Shift XF86AudioLowerVolume spawn "~/.config/river/volume.sh down 0.01"
|
||||
riverctl map $mode Control XF86AudioRaiseVolume spawn "~/.config/river/volume.sh up 0.10"
|
||||
riverctl map $mode Control XF86AudioLowerVolume spawn "~/.config/river/volume.sh down 0.10"
|
||||
riverctl map $mode None XF86AudioMute exec spawn "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"
|
||||
|
||||
riverctl map $mode None XF86AudioMedia spawn 'playerctl play-pause'
|
||||
riverctl map $mode None XF86AudioPlay spawn 'playerctl play-pause'
|
||||
riverctl map $mode None XF86AudioPrev spawn 'playerctl previous'
|
||||
riverctl map $mode None XF86AudioNext spawn 'playerctl next'
|
||||
|
||||
riverctl map $mode None XF86MonBrightnessUp spawn "brightnessctl set +5% | sed -En 's/.*\(([0-9]+)%\).*/\1/p' > $wobsock"
|
||||
riverctl map $mode None XF86MonBrightnessDown spawn "brightnessctl set 5%- | sed -En 's/.*\(([0-9]+)%\).*/\1/p' > $wobsock"
|
||||
done
|
||||
|
||||
# "caffeine"
|
||||
riverctl map normal $mod+Control C spawn "$HOME/.config/river/toggle_caffeine.sh"
|
||||
|
||||
# colors
|
||||
riverctl background-color 0x1e1e2e
|
||||
riverctl border-color-focused 0xf5c2e7
|
||||
riverctl border-color-unfocused 0x586e75
|
||||
riverctl border-width 2
|
||||
|
||||
# options
|
||||
riverctl set-repeat 50 300
|
||||
# riverctl keyboard-layout -options "altwin:swap_lalt_lwin" us
|
||||
# riverctl keyboard-layout -options "altwin:swap_lalt_lwin,grp:alt_space_toggle" -variant colemak_dh, us,us
|
||||
riverctl keyboard-layout -options "grp:alt_space_toggle" -variant colemak_dh, us,us
|
||||
# riverctl keyboard-layout -options "altwin:swap_lalt_lwin,grp:alt_space_toggle" -variant ,colemak_dh,dvorak us,us,us
|
||||
# riverctl keyboard-layout -options "grp:alt_space_toggle" -variant ,dvorak us,us
|
||||
|
||||
riverctl focus-follows-cursor normal
|
||||
riverctl hide-cursor timeout 10000
|
||||
riverctl hide-cursor when-typing enabled
|
||||
riverctl xcursor-theme Adwaita
|
||||
|
||||
touchpad=$(riverctl list-inputs | grep -i touchpad)
|
||||
riverctl input $touchpad disable-while-typing enabled
|
||||
riverctl input $touchpad natural-scroll enabled
|
||||
riverctl input $touchpad tap enabled
|
||||
|
||||
# Make certain views start floating
|
||||
riverctl float-filter-add app-id float
|
||||
riverctl float-filter-add title "popup title with spaces"
|
||||
riverctl float-filter-add app-id blueman-manager
|
||||
|
||||
# "Scratchpad"
|
||||
scratch_tag=$((1 << 20))
|
||||
riverctl map normal $mod Slash toggle-focused-tags $scratch_tag
|
||||
riverctl map normal $mod+Shift Slash set-view-tags $scratch_tag
|
||||
riverctl map normal $mod+Control Slash toggle-view-tags $scratch_tag
|
||||
riverctl map normal $mod S spawn "$term_float"
|
||||
riverctl rule-add -app-id float float
|
||||
|
||||
# SSD (so GTK apps show border)
|
||||
riverctl rule-add -app-id firefox ssd
|
||||
riverctl rule-add -app-id librewolf ssd
|
||||
riverctl rule-add -app-id thunderbird ssd
|
||||
riverctl rule-add -app-id betterbird ssd
|
||||
riverctl rule-add -app-id emacs ssd
|
||||
riverctl rule-add -app-id gnucash ssd
|
||||
riverctl rule-add -app-id pcmanfm ssd
|
||||
riverctl rule-add -app-id steam ssd
|
||||
riverctl rule-add -app-id drracket ssd
|
||||
riverctl rule-add -app-id org.pwmt.zathura ssd
|
||||
riverctl rule-add -app-id org.gnome.Boxes ssd
|
||||
riverctl rule-add -app-id com.github.xournalpp.xournalpp ssd
|
||||
|
||||
# spawn stuff
|
||||
pgrep swaybg || swaybg -i ~/.config/river/wallpaper.jpg &
|
||||
wlr-randr --output eDP-1 --scale 1.25 &
|
||||
pgrep waybar || waybar &
|
||||
|
||||
# dunst stuff
|
||||
pgrep dunst || dunst &
|
||||
riverctl map normal $mod D spawn 'dunstctl close'
|
||||
riverctl map normal $mod+Shift D spawn 'dunstctl close-all'
|
||||
|
||||
# bluetooth
|
||||
blueman-applet &
|
||||
|
||||
# foot server
|
||||
foot --server & # TODO: figure out systemd service
|
||||
|
||||
# emacs daemon
|
||||
emacs --daemon &
|
||||
|
||||
# nextcloud client
|
||||
nextcloud &
|
||||
|
||||
# pianobar
|
||||
riverctl map normal $mod+Shift S spawn '~/.config/pianobar/change_station.sh'
|
||||
riverctl map normal $mod P spawn 'echo "p" > ~/.config/pianobar/ctl'
|
||||
riverctl map normal $mod C spawn '~/.config/pianobar/display_info.sh'
|
||||
riverctl map normal $mod N spawn 'echo "n" > ~/.config/pianobar/ctl'
|
||||
|
||||
# swayidle
|
||||
pgrep swayidle || swayidle -w \
|
||||
timeout 300 '$HOME/.config/river/timeout.sh' \
|
||||
before-sleep 'swaylock -f -c 000000' &
|
||||
|
||||
# gnome-keyring (needed for nextcloud to remember login)
|
||||
dbus-update-activation-environment --all
|
||||
gnome-keyring-daemon --start --components=secrets
|
||||
|
||||
# start rivertile
|
||||
riverctl default-layout rivertile
|
||||
rivertile -view-padding 6 -outer-padding 6 -main-ratio 0.55 &
|
||||
3
river-classic/.config/river/power_mode.sh
Executable file
3
river-classic/.config/river/power_mode.sh
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
echo -e "performance\nbalanced\npower-saver" | bemenu --center --list 3 -p "Power Mode" --border 2 --bdr "#f6c2e7" -W 0.5 | xargs tlpctl
|
||||
17
river-classic/.config/river/screenshot.sh
Executable file
17
river-classic/.config/river/screenshot.sh
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ $1 = "clip" ]; then
|
||||
if grim -g "$(slurp)" - | wl-copy; then
|
||||
notify-send "screenshot" "Saved to clipboard"
|
||||
else
|
||||
notify-send "screenshot" "Canceled"
|
||||
fi
|
||||
else
|
||||
filename="$HOME/Downloads/$(echo '' | bemenu --ifne -p "Enter filename:")"
|
||||
filename_ext="${filename%.png}.png"
|
||||
if grim -g "$(slurp)" "$filename_ext"; then
|
||||
notify-send "screenshot" "Saved as $filename_ext"
|
||||
else
|
||||
notify-send "screenshot" "Canceled"
|
||||
fi
|
||||
fi
|
||||
15
river-classic/.config/river/timeout.sh
Executable file
15
river-classic/.config/river/timeout.sh
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
|
||||
caffeine_file=$HOME/.cache/idle
|
||||
|
||||
if [[ ! -f $caffeine_file ]] then
|
||||
echo 0 > $caffeine_file
|
||||
fi
|
||||
|
||||
caffeine=$(<$HOME/.cache/idle)
|
||||
|
||||
if [[ $caffeine -eq 0 ]] then
|
||||
swaylock -f -c 000000
|
||||
else
|
||||
notify-send 'Caffeine' 'Not sleeping'
|
||||
fi
|
||||
17
river-classic/.config/river/toggle_caffeine.sh
Executable file
17
river-classic/.config/river/toggle_caffeine.sh
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
#!/bin/sh
|
||||
|
||||
caffeine_file=$HOME/.cache/idle
|
||||
|
||||
if [[ ! -f $caffeine_file ]] then
|
||||
echo 0 > $caffeine_file
|
||||
fi
|
||||
|
||||
caffeine=$(<$HOME/.cache/idle)
|
||||
|
||||
if [[ $caffeine -eq 0 ]] then
|
||||
echo 1 > $caffeine_file
|
||||
notify-send 'Caffeine' 'Caffeine Enabled'
|
||||
else
|
||||
echo 0 > $caffeine_file
|
||||
notify-send 'Caffeine' 'Caffeine Disabled'
|
||||
fi
|
||||
BIN
river-classic/.config/river/wallpaper.jpg
Normal file
BIN
river-classic/.config/river/wallpaper.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 695 KiB |
|
|
@ -1,222 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Variables
|
||||
term="foot"
|
||||
term_client="footclient"
|
||||
term_float="foot --app-id=float -w 1120x700"
|
||||
browser="librewolf"
|
||||
email="thunderbird"
|
||||
emacs="emacsclient --create-frame --alternate-editor='emacs'"
|
||||
mod=Super
|
||||
books="$HOME/.local/bin/books.sh"
|
||||
papers="$HOME/.local/bin/papers.sh"
|
||||
config="$HOME/.config/river"
|
||||
|
||||
wobsock=$XDG_RUNTIME_DIR/wob.sock
|
||||
rm -f $wobsock && mkfifo $wobsock && tail -f $wobsock | wob &
|
||||
|
||||
# Launch things
|
||||
riverctl map normal $mod Return spawn $term_client
|
||||
riverctl map normal $mod+Shift Return spawn $term
|
||||
riverctl map normal $mod R span "bemenu-run -p launch"
|
||||
riverctl map normal $mod Semicolon spawn "bemenu-run -p launch"
|
||||
riverctl map normal $mod+Shift P spawn "$config/power_mode.sh"
|
||||
# riverctl map normal $mod+Shift P spawn "passmenu -p password"
|
||||
riverctl map normal $mod BracketRight spawn "$browser"
|
||||
riverctl map normal $mod T spawn "$email"
|
||||
riverctl map normal $mod Z spawn "$books"
|
||||
riverctl map normal $mod Y spawn "$papers"
|
||||
riverctl map normal $mod E spawn "$emacs"
|
||||
riverctl map normal $mod+Control O spawn "swaylock"
|
||||
riverctl map normal $mod B spawn "bluetoothctl connect 88:C9:E8:D7:60:85"
|
||||
riverctl map normal $mod+Shift B spawn "bluetoothctl disconnect 88:C9:E8:D7:60:85"
|
||||
riverctl map normal $mod+Control S spawn "$config/screenshot.sh clip"
|
||||
riverctl map normal $mod+Shift E spawn "$config/screenshot.sh menu"
|
||||
|
||||
# Close windows & exit wm
|
||||
riverctl map normal $mod+Shift C close
|
||||
riverctl map normal $mod+Shift Q exit
|
||||
|
||||
# view stuff
|
||||
riverctl map normal $mod J focus-view next
|
||||
riverctl map normal $mod K focus-view previous
|
||||
riverctl map normal $mod+Shift J swap next
|
||||
riverctl map normal $mod+Shift K swap previous
|
||||
|
||||
riverctl map normal $mod+Shift Space zoom
|
||||
|
||||
# monitor stuff
|
||||
riverctl map normal $mod Period focus-output next
|
||||
riverctl map normal $mod Comma focus-output previous
|
||||
riverctl map normal $mod+Shift Period send-to-output next
|
||||
riverctl map normal $mod+Shift Comma send-to-output previous
|
||||
|
||||
# mess with main
|
||||
riverctl map normal $mod H send-layout-cmd rivertile "main-ratio -0.05"
|
||||
riverctl map normal $mod L send-layout-cmd rivertile "main-ratio +0.05"
|
||||
|
||||
riverctl map normal $mod+Shift H send-layout-cmd rivertile "main-count +1"
|
||||
riverctl map normal $mod+Shift L send-layout-cmd rivertile "main-count -1"
|
||||
|
||||
# manipulate views
|
||||
riverctl map normal $mod+Alt H move left 100
|
||||
riverctl map normal $mod+Alt J move down 100
|
||||
riverctl map normal $mod+Alt K move up 100
|
||||
riverctl map normal $mod+Alt L move right 100
|
||||
|
||||
riverctl map normal $mod+Alt+Control H snap left
|
||||
riverctl map normal $mod+Alt+Control J snap down
|
||||
riverctl map normal $mod+Alt+Control K snap up
|
||||
riverctl map normal $mod+Alt+Control L snap right
|
||||
|
||||
riverctl map normal $mod+Alt+Shift H resize horizontal -100
|
||||
riverctl map normal $mod+Alt+Shift J resize vertical 100
|
||||
riverctl map normal $mod+Alt+Shift K resize vertical -100
|
||||
riverctl map normal $mod+Alt+Shift L resize horizontal 100
|
||||
|
||||
riverctl map-pointer normal $mod BTN_LEFT move-view
|
||||
riverctl map-pointer normal $mod BTN_RIGHT resize-view
|
||||
riverctl map-pointer normal $mod BTN_MIDDLE toggle-float
|
||||
|
||||
# tag stuff
|
||||
for i in $(seq 1 9)
|
||||
do
|
||||
tags=$((1 << ($i - 1)))
|
||||
|
||||
riverctl map normal $mod $i set-focused-tags $tags
|
||||
riverctl map normal $mod+Shift $i set-view-tags $tags
|
||||
riverctl map normal $mod+Control $i toggle-focused-tags $tags
|
||||
riverctl map normal $mod+Shift+Control $i toggle-view-tags $tags
|
||||
done
|
||||
|
||||
all_tags=$(((1 << 32) - 1))
|
||||
riverctl map normal $mod 0 set-focused-tags $all_tags
|
||||
riverctl map normal $mod+Shift 0 set-view-tags $all_tags
|
||||
|
||||
# toggle
|
||||
riverctl map normal $mod Space toggle-float
|
||||
riverctl map normal $mod F toggle-fullscreen
|
||||
|
||||
# change layout orientation
|
||||
riverctl map normal $mod+Control K send-layout-cmd rivertile "main-location top"
|
||||
riverctl map normal $mod+Control L send-layout-cmd rivertile "main-location right"
|
||||
riverctl map normal $mod+Control J send-layout-cmd rivertile "main-location bottom"
|
||||
riverctl map normal $mod+Control H send-layout-cmd rivertile "main-location left"
|
||||
|
||||
# passthrough mode
|
||||
riverctl declare-mode passthrough
|
||||
riverctl map normal $mod F11 enter-mode passthrough
|
||||
riverctl map passthrough $mod F11 enter-mode normal
|
||||
|
||||
# media key bindings
|
||||
for mode in normal locked
|
||||
do
|
||||
riverctl map $mode None XF86Eject spawn 'eject -T'
|
||||
|
||||
riverctl map $mode None XF86AudioRaiseVolume spawn "~/.config/river/volume.sh up 0.02"
|
||||
riverctl map $mode None XF86AudioLowerVolume spawn "~/.config/river/volume.sh down 0.02"
|
||||
riverctl map $mode Shift XF86AudioRaiseVolume spawn "~/.config/river/volume.sh up 0.01"
|
||||
riverctl map $mode Shift XF86AudioLowerVolume spawn "~/.config/river/volume.sh down 0.01"
|
||||
riverctl map $mode Control XF86AudioRaiseVolume spawn "~/.config/river/volume.sh up 0.10"
|
||||
riverctl map $mode Control XF86AudioLowerVolume spawn "~/.config/river/volume.sh down 0.10"
|
||||
riverctl map $mode None XF86AudioMute exec spawn "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"
|
||||
|
||||
riverctl map $mode None XF86AudioMedia spawn 'playerctl play-pause'
|
||||
riverctl map $mode None XF86AudioPlay spawn 'playerctl play-pause'
|
||||
riverctl map $mode None XF86AudioPrev spawn 'playerctl previous'
|
||||
riverctl map $mode None XF86AudioNext spawn 'playerctl next'
|
||||
|
||||
riverctl map $mode None XF86MonBrightnessUp spawn "brightnessctl set +5% | sed -En 's/.*\(([0-9]+)%\).*/\1/p' > $wobsock"
|
||||
riverctl map $mode None XF86MonBrightnessDown spawn "brightnessctl set 5%- | sed -En 's/.*\(([0-9]+)%\).*/\1/p' > $wobsock"
|
||||
done
|
||||
|
||||
# "caffeine"
|
||||
riverctl map normal $mod+Control C spawn "$HOME/.config/river/toggle_caffeine.sh"
|
||||
|
||||
# colors
|
||||
riverctl background-color 0x1e1e2e
|
||||
riverctl border-color-focused 0xf5c2e7
|
||||
riverctl border-color-unfocused 0x586e75
|
||||
riverctl border-width 2
|
||||
|
||||
# options
|
||||
riverctl set-repeat 50 300
|
||||
# riverctl keyboard-layout -options "altwin:swap_lalt_lwin" us
|
||||
# riverctl keyboard-layout -options "altwin:swap_lalt_lwin,grp:alt_space_toggle" -variant colemak_dh, us,us
|
||||
riverctl keyboard-layout -options "grp:alt_space_toggle" -variant colemak_dh, us,us
|
||||
# riverctl keyboard-layout -options "altwin:swap_lalt_lwin,grp:alt_space_toggle" -variant ,colemak_dh,dvorak us,us,us
|
||||
# riverctl keyboard-layout -options "grp:alt_space_toggle" -variant ,dvorak us,us
|
||||
|
||||
riverctl focus-follows-cursor normal
|
||||
riverctl hide-cursor timeout 10000
|
||||
riverctl hide-cursor when-typing enabled
|
||||
riverctl xcursor-theme Adwaita
|
||||
|
||||
touchpad=$(riverctl list-inputs | grep -i touchpad)
|
||||
riverctl input $touchpad disable-while-typing enabled
|
||||
riverctl input $touchpad natural-scroll enabled
|
||||
riverctl input $touchpad tap enabled
|
||||
|
||||
# Make certain views start floating
|
||||
riverctl float-filter-add app-id float
|
||||
riverctl float-filter-add title "popup title with spaces"
|
||||
riverctl float-filter-add app-id blueman-manager
|
||||
|
||||
# "Scratchpad"
|
||||
scratch_tag=$((1 << 20))
|
||||
riverctl map normal $mod Slash toggle-focused-tags $scratch_tag
|
||||
riverctl map normal $mod+Shift Slash set-view-tags $scratch_tag
|
||||
riverctl map normal $mod+Control Slash toggle-view-tags $scratch_tag
|
||||
riverctl map normal $mod S spawn "$term_float"
|
||||
riverctl rule-add -app-id float float
|
||||
|
||||
# SSD (so GTK apps show border)
|
||||
riverctl rule-add -app-id firefox ssd
|
||||
riverctl rule-add -app-id librewolf ssd
|
||||
riverctl rule-add -app-id thunderbird ssd
|
||||
riverctl rule-add -app-id betterbird ssd
|
||||
riverctl rule-add -app-id emacs ssd
|
||||
riverctl rule-add -app-id gnucash ssd
|
||||
riverctl rule-add -app-id pcmanfm ssd
|
||||
riverctl rule-add -app-id steam ssd
|
||||
riverctl rule-add -app-id drracket ssd
|
||||
riverctl rule-add -app-id org.pwmt.zathura ssd
|
||||
riverctl rule-add -app-id org.gnome.Boxes ssd
|
||||
riverctl rule-add -app-id com.github.xournalpp.xournalpp ssd
|
||||
|
||||
# spawn stuff
|
||||
pgrep swaybg || swaybg -i ~/.config/river/wallpaper.jpg &
|
||||
wlr-randr --output eDP-1 --scale 1.25 &
|
||||
pgrep waybar || waybar &
|
||||
|
||||
# dunst stuff
|
||||
pgrep dunst || dunst &
|
||||
riverctl map normal $mod D spawn 'dunstctl close'
|
||||
riverctl map normal $mod+Shift D spawn 'dunstctl close-all'
|
||||
|
||||
# bluetooth
|
||||
blueman-applet &
|
||||
|
||||
# foot server
|
||||
foot --server & # TODO: figure out systemd service
|
||||
|
||||
# emacs daemon
|
||||
emacs --daemon &
|
||||
|
||||
# nextcloud client
|
||||
nextcloud &
|
||||
|
||||
# pianobar
|
||||
riverctl map normal $mod+Shift S spawn '~/.config/pianobar/change_station.sh'
|
||||
riverctl map normal $mod P spawn 'echo "p" > ~/.config/pianobar/ctl'
|
||||
riverctl map normal $mod C spawn '~/.config/pianobar/display_info.sh'
|
||||
riverctl map normal $mod N spawn 'echo "n" > ~/.config/pianobar/ctl'
|
||||
|
||||
# swayidle
|
||||
pgrep swayidle || swayidle -w \
|
||||
timeout 300 '$HOME/.config/river/timeout.sh' \
|
||||
before-sleep 'swaylock -f -c 000000' &
|
||||
|
||||
# start rivertile
|
||||
riverctl default-layout rivertile
|
||||
rivertile -view-padding 6 -outer-padding 6 -main-ratio 0.55 &
|
||||
$HOME/repos/damblocks/damblocks | kwm &
|
||||
killall -q mpc
|
||||
damblocks-mpdd
|
||||
|
|
|
|||
Loading…
Reference in a new issue