make things more obvious
This commit is contained in:
parent
f016196e5d
commit
c1c7979222
1 changed files with 23 additions and 11 deletions
|
@ -1,22 +1,34 @@
|
|||
#!/bin/sh
|
||||
|
||||
TERMINAL="alacritty"
|
||||
BROWSER1="firefox-developer-edition"
|
||||
BROWSER2="chromium"
|
||||
EMAIL="thunderbird"
|
||||
RUN="fuzzel"
|
||||
CHAT1="caprine --enable-features=UseOzonePlatform --ozone-platform=wayland" # with wayland hack
|
||||
CHAT2="telegram-desktop"
|
||||
DISCORD="discord --enable-features=UseOzonePlatform --ozone-platform=wayland" # with wayland hack
|
||||
GAME1="steam-native"
|
||||
GAME2="lutris"
|
||||
MUSIC="spotify-launcher"
|
||||
|
||||
# startup
|
||||
waybar &
|
||||
swaybg -i ~/.cache/wal/bg &
|
||||
mako &
|
||||
|
||||
# set keybinds
|
||||
riverctl map normal Super Return spawn "alacritty"
|
||||
riverctl map normal Super W spawn "firefox-developer-edition"
|
||||
riverctl map normal Super+Shift W spawn "chromium"
|
||||
riverctl map normal Super E spawn "thunderbird"
|
||||
riverctl map normal Super R spawn "fuzzel"
|
||||
riverctl map normal Super C spawn "caprine --enable-features=UseOzonePlatform --ozone-platform=wayland"
|
||||
riverctl map normal Super+Shift C spawn "telegram-desktop"
|
||||
riverctl map normal Super D spawn "discord --enable-features=UseOzonePlatform --ozone-platform=wayland"
|
||||
riverctl map normal Super G spawn "gimp"
|
||||
riverctl map normal Super+Shift G spawn "steam-native"
|
||||
riverctl map normal Super M spawn "spotify-launcher"
|
||||
riverctl map normal Super Return spawn "$TERMINAL"
|
||||
riverctl map normal Super W spawn "$BROWSER1"
|
||||
riverctl map normal Super+Shift W spawn "$BROWSER2"
|
||||
riverctl map normal Super E spawn "$EMAIL"
|
||||
riverctl map normal Super R spawn "$RUN"
|
||||
riverctl map normal Super C spawn "$CHAT1"
|
||||
riverctl map normal Super+Shift C spawn "$CHAT2"
|
||||
riverctl map normal Super D spawn "$DISCORD"
|
||||
riverctl map normal Super G spawn "$GAME1"
|
||||
riverctl map normal Super+Shift G spawn "$GAME2"
|
||||
riverctl map normal Super M spawn "$MUSIC"
|
||||
|
||||
# Super+Q to close the focused view
|
||||
riverctl map normal Super Q close
|
||||
|
|
Loading…
Add table
Reference in a new issue