diff options
-rw-r--r-- | .config/sxhkd/sxhkdrc | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/.config/sxhkd/sxhkdrc b/.config/sxhkd/sxhkdrc new file mode 100644 index 0000000..53ac8c7 --- /dev/null +++ b/.config/sxhkd/sxhkdrc @@ -0,0 +1,57 @@ +######### +# Media # +######### + +# Toggle mute +XF86AudioMute + pactl set-sink-mute @DEFAULT_SINK@ toggle + +# Toggle mic mute + +# pactl set-source-mute @DEFAULT_SOURCE@ toggle + +# Change volume +XF86Audio{Raise,Lower}Volume + pactl set-sink-volume @DEFAULT_SINK@ {+,-}2% + +# Change volume +#super + {k,j} +# pactl set-sink-volume @DEFAULT_SINK@ {+,-}2% + +# Change volume, chunky +#super + shift + {k,j} +# pactl set-sink-volume @DEFAULT_SINK@ {+,-}10% + +################ +# Applications # +################ + +# Launch Brave +super + q + $BROWSER + +# Launch password manager +#super + p +$dmenu drop down + +#dmenu kill +#super + shift + w + +#lock +#super+ shift +l +# + +# Change screen brightness +XF86MonBrightness{Up,Down} + xbacklight -{inc,dec} 5 + +# Change screen temp + +# Take a screenshot (full) +Print + maim | tee ~/Pictures/Screenshots/pic-full-$(date '+%y-%m-%d--%H-%M-%S').png | xclip -selection clipboard -t image/png + +# Take a screenshot (sel) +shift + Print + maim --select | tee ~/Pictures/Screenshots/pic-sel-$(date '+agy-%m-%d--%H-%M-%S').png | xclip -selection clipboard -t image/png + |