Add OpenRGB config
This commit is contained in:
parent
bad27ed826
commit
2e6b639ee6
9 changed files with 1835 additions and 4 deletions
2
symlinks/config/.gitignore
vendored
2
symlinks/config/.gitignore
vendored
|
@ -75,3 +75,5 @@
|
|||
!/ra-multiplex/
|
||||
!/ra-multiplex/**
|
||||
!/kanshi
|
||||
!/OpenRGB
|
||||
!/OpenRGB/**
|
||||
|
|
1
symlinks/config/OpenRGB/.gitignore
vendored
Normal file
1
symlinks/config/OpenRGB/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
logs
|
1828
symlinks/config/OpenRGB/OpenRGB.json
Normal file
1828
symlinks/config/OpenRGB/OpenRGB.json
Normal file
File diff suppressed because it is too large
Load diff
BIN
symlinks/config/OpenRGB/full_cyan.orp
Normal file
BIN
symlinks/config/OpenRGB/full_cyan.orp
Normal file
Binary file not shown.
BIN
symlinks/config/OpenRGB/full_rainbow.orp
Normal file
BIN
symlinks/config/OpenRGB/full_rainbow.orp
Normal file
Binary file not shown.
BIN
symlinks/config/OpenRGB/red_cyan.orp
Normal file
BIN
symlinks/config/OpenRGB/red_cyan.orp
Normal file
Binary file not shown.
|
@ -5,6 +5,6 @@ bindsym $alt+L exec 'swaylock'
|
|||
exec swayidle -w \
|
||||
timeout 300 'swaylock' \
|
||||
timeout 330 'swaymsg "output * power off"' \
|
||||
resume 'swaymsg "output * power on"' \
|
||||
timeout 600 'systemctl suspend' \
|
||||
resume 'swaymsg "output * power on"; openrgb -p ~/.config/OpenRGB/full_cyan.orp' \
|
||||
timeout 600 'openrgb -b 0 -m off; systemctl suspend' \
|
||||
before-sleep 'swaylock; playerctl pause'
|
||||
|
|
|
@ -4,4 +4,4 @@ exec kdeconnect-indicator
|
|||
exec ulauncher --hide-window
|
||||
exec libinput-gestures-setup start
|
||||
exec kanshi
|
||||
exec openrgb --startminimized
|
||||
exec openrgb --startminimized --server --profile ~/.config/OpenRGB/full_cyan.orp
|
||||
|
|
|
@ -5,7 +5,7 @@ set $mode_system "System (l) lock, (e) logout, (s) suspend, (h) hibernate, (r) r
|
|||
mode $mode_system {
|
||||
bindsym l exec --no-startup-id swaylock, mode "default"
|
||||
bindsym e exec --no-startup-id swaymsg exit, mode "default"
|
||||
bindsym s exec --no-startup-id swaylock && systemctl suspend, mode "default"
|
||||
bindsym s exec --no-startup-id swaylock && openrgb -b 0 -m off && systemctl suspend, mode "default"
|
||||
bindsym h exec --no-startup-id swaylock && systemctl hibernate, mode "default"
|
||||
bindsym r exec --no-startup-id systemctl reboot, mode "default"
|
||||
bindsym Shift+s exec --no-startup-id systemctl poweroff -i, mode "default"
|
||||
|
|
Loading…
Add table
Reference in a new issue