Changed window gap in bspwmrc and added shortcuts for functions keys
This commit is contained in:
parent
dc7433afb7
commit
6e9aa26548
@ -32,6 +32,6 @@ fi
|
|||||||
|
|
||||||
bspc config border_width 0
|
bspc config border_width 0
|
||||||
bspc config top_padding 34
|
bspc config top_padding 34
|
||||||
bspc config window_gap 16
|
bspc config window_gap 8
|
||||||
bspc config split_ratio 0.6
|
bspc config split_ratio 0.6
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ super + l
|
|||||||
betterlockscreen -l
|
betterlockscreen -l
|
||||||
#Nautilus
|
#Nautilus
|
||||||
super + p
|
super + p
|
||||||
dolphin
|
nautilus
|
||||||
#Quit/restart bspwm
|
#Quit/restart bspwm
|
||||||
super + alt + {q,r}
|
super + alt + {q,r}
|
||||||
bspc {quit,wm -r}
|
bspc {quit,wm -r}
|
||||||
@ -46,3 +46,21 @@ super + alt + shift + {h,j,k,l}
|
|||||||
#Move a floating window
|
#Move a floating window
|
||||||
super + {Left,Down,Up,Right}
|
super + {Left,Down,Up,Right}
|
||||||
bspc node -v {-20 0,0 20,0 -20,20 0}
|
bspc node -v {-20 0,0 20,0 -20,20 0}
|
||||||
|
|
||||||
|
XF86AudioMute
|
||||||
|
pactl set-sink-mute @DEFAULT_SINK@ toggle
|
||||||
|
|
||||||
|
XF86AudioRaiseVolume
|
||||||
|
if [ (pacmd list-sinks| grep -A 15 '* index'| awk '/volume: front/\{ print $5 \}' | sed 's/[%|,]//g') -le "98" ] ; pactl set-sink-volume @DEFAULT_SINK@ +2%; end;
|
||||||
|
|
||||||
|
XF86AudioLowerVolume
|
||||||
|
pactl set-sink-volume @DEFAULT_SINK@ -2%
|
||||||
|
|
||||||
|
XF86AudioMicMute
|
||||||
|
pactl set-source-mute @DEFAULT_SOURCE@ toggle
|
||||||
|
|
||||||
|
XF86MonBrightnessDown
|
||||||
|
echo (math (cat /sys/class/backlight/amdgpu_bl0/brightness) - 5) > /sys/class/backlight/amdgpu_bl0/brightness
|
||||||
|
|
||||||
|
XF86MonBrightnessUp
|
||||||
|
echo (math (cat /sys/class/backlight/amdgpu_bl0/brightness) + 5) > /sys/class/backlight/amdgpu_bl0/brightness
|
||||||
|
Loading…
Reference in New Issue
Block a user