# Launch Firefox
super + w
	firefox
# Launch Firefox Private Window
super + shift + w
	firefox --private-window

# Capture entire screen and save to clipboard
Print
	scrot -m - | xclip -selection clipboard -target image/png

# Capture selection and save to clipboard
shift + Print
	scrot -s - | xclip -selection clipboard -target image/png

# Launch Alacritty
super + shift + Return
	alacritty

# Emoji Picker
super + grave
	~/.local/bin/dmenuunicode

# Volume
XF86AudioRaiseVolume
	pactl set-sink-volume @DEFAULT_SINK@ +5%
XF86AudioLowerVolume
	pactl set-sink-volume @DEFAULT_SINK@ -5%
XF86AudioMute
	pactl set-sink-mute @DEFAULT_SINK@ toggle
