summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkkard2 <[email protected]>2025-04-17 17:51:00 +0200
committerkkard2 <[email protected]>2025-04-17 17:51:00 +0200
commitf30a1821e3810b6438ea573dc14f8a25fc769d25 (patch)
treefbd16dd92747176f8061ba0261b836b00b656f9f
parent0c7360cdca951a5fb5d2723c878b5407b4e210ac (diff)
dwm moment
-rw-r--r--_linux/README.md3
-rw-r--r--_linux/sxhkd/sxhkdrc19
-rwxr-xr-xsetup.sh1
3 files changed, 20 insertions, 3 deletions
diff --git a/_linux/README.md b/_linux/README.md
index b337d4d..9ef61f0 100644
--- a/_linux/README.md
+++ b/_linux/README.md
@@ -1,6 +1,3 @@
-# run
-* `sudo apt install sxhkd` xdd
-
# links
* `$XDG_CONFIG_HOME/tmux` -> `./tmux`
* `$XDG_CONFIG_HOME/i3` -> `./i3`
diff --git a/_linux/sxhkd/sxhkdrc b/_linux/sxhkd/sxhkdrc
new file mode 100644
index 0000000..d32f2f1
--- /dev/null
+++ b/_linux/sxhkd/sxhkdrc
@@ -0,0 +1,19 @@
+super + shift + s
+ flameshot gui
+super + w
+ firefox
+
+super + ctrl + Up
+ pactl set-sink-volume @DEFAULT_SINK@ +5% && $refresh_i3status
+super + ctrl + Down
+ pactl set-sink-volume @DEFAULT_SINK@ -5% && $refresh_i3status
+super + shift + m
+ pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status
+super + ctrl + space
+ playerctl play-pause
+
+bindsym $mod+Control+Up exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +5% && $refresh_i3status
+bindsym $mod+Control+Down exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -5% && $refresh_i3status
+bindsym $mod+m exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status
+
+bindsym $mod+Control+space exec --no-startup-id playerctl play-pause
diff --git a/setup.sh b/setup.sh
index 46b282e..e516716 100755
--- a/setup.sh
+++ b/setup.sh
@@ -22,3 +22,4 @@ link_helper "mpv"
linux_link_helper "tmux"
linux_link_helper "i3"
linux_link_helper "i3status"
+linux_link_helper "sxhkd"