blob: c3fdd3f60b5959e1e806c1e897938ef57492a820 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# make sxhkd reload its configuration files:
super + Escape
pkill -USR1 -x sxhkd
# Take a Screenshot
super + S
maim --select | tee ~/pix/ss/$(date +%s).png | xclip -selection clipboard -t image/png
#Lockscreen
super + L
~/.local/scripts/lockScreen
#Change keyboard Est - Usa
super + U
setxkbmap us -option caps:ctrl_modifier;notify-send -t 1000 'Keyboard US'
super + E
setxkbmap ee -option caps:ctrl_modifier;notify-send -t 1000 'Keyboard EE'
|