fixed keybinds

This commit is contained in:
Michael Chalupiak 2024-11-05 16:35:40 -05:00
parent f70a043ca9
commit 450b695fa8

View File

@ -3,7 +3,7 @@
# #
# make sxhkd reload its configuration files: # make sxhkd reload its configuration files:
super + Escape super + r
pkill -USR1 -x sxhkd pkill -USR1 -x sxhkd
# #
@ -26,44 +26,42 @@ super + ctrl + {m,x,y,z}
# Launch Programs # Launch Programs
# Browser
super + ctrl + b
brave
# dmenu Launcher # dmenu Launcher
super + p super + p
dmenu_run dmenu_run
# Terminal # Terminal
super + Return super + Return
st st
super + d
st
# Cmus
super + ctrl + c
st -e cmus
# Ranger
super + ctrl + r
st -e ranger
# NeoVim
super + ctrl + v
st -e nvim
# Emacs
super + ctrl + e
emacs
# Screenshot # Screenshot
super + shift + s
scrot -s -e 'xclip -selection clipboard -t image/png -i $f' ~/Pictures/screenshots/%Y-%m-%d-%T-screenshot.png
super + ctrl + s super + ctrl + s
scrot scrot -u -e 'xclip -selection clipboard -t image/png -i $f' ~/Pictures/screenshots/%Y-%m-%d-%T-screenshot.png
# Screen Lock
super + Escape
slock
# scripts
super + e
dmenu_emoji
# keymap
alt + space
setxkbmap il
alt + shift + space
setxkbmap us
# Media Controls # Media Controls
# Mute Audio # Mute Audio
XF86AudioMute XF86AudioMute
pulseaudio-ctl mute pactl set-sink-mute @DEFAULT_SINK@ toggle
# Lower Volume # Lower Volume
XF86AudioLowerVolume XF86AudioLowerVolume
pulseaudio-ctl down 1 pactl set-sink-volume @DEFAULT_SINK@ -2%
# Raise Volume # Raise Volume
XF86AudioRaiseVolume XF86AudioRaiseVolume
pulseaudio-ctl up 1 pactl set-sink-volume @DEFAULT_SINK@ +2%
# Play/Pause # Play/Pause
XF86AudioPlay XF86AudioPlay
playerctl play-pause playerctl play-pause
@ -76,6 +74,12 @@ XF86AudioNext
# Previous Song # Previous Song
XF86AudioPrev XF86AudioPrev
playerctl previous playerctl previous
# Brightness Up
XF86_MonBrightnessUp
brightnessctl set 1%+
# Brightness Down
XF86_MonBrightnessDown
brightnessctl set 1%+
## BSPWM Controls ## ## BSPWM Controls ##