summaryrefslogtreecommitdiff
path: root/.config/sxhkd
diff options
context:
space:
mode:
authorSaumit Dinesan <79687674+Saumit-D@users.noreply.github.com>2021-11-13 01:20:00 +0530
committerGitHub <noreply@github.com>2021-11-13 01:20:00 +0530
commitaaabea84bc11f92605806c825d604e8c2e92a804 (patch)
tree6ecf9d42d371b32a7d5e9cd8f203a728c4cd58b8 /.config/sxhkd
parent79a59c35f25209650760500f2509a8979e5797cd (diff)
Add files via upload
Diffstat (limited to '.config/sxhkd')
-rw-r--r--.config/sxhkd/sxhkdrc57
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
+