mirror of
https://git.davidovski.xyz/dot.git
synced 2024-08-15 00:43:28 +00:00
changes of sorts
This commit is contained in:
parent
c475aefc0f
commit
a4e5fe820e
15 changed files with 87 additions and 35 deletions
|
@ -17,7 +17,6 @@ super + ctrl + alt + f
|
|||
{XF86AudioMute}
|
||||
amixer -D pulse set Master 1+ toggle
|
||||
|
||||
# runner
|
||||
super + r
|
||||
rofi -show drun -show-icons
|
||||
|
||||
|
@ -220,15 +219,18 @@ super + {_,shift +}w
|
|||
|
||||
# float the window
|
||||
super + f
|
||||
if [ -z "$(bspc query -N -n focused.floating)" ]; then \
|
||||
bspc node focused -t floating; \
|
||||
else \
|
||||
bspc node focused -t tiled; \
|
||||
fi
|
||||
[ -z "$(bspc query -N -n focused.floating)" ] && \
|
||||
bspc node focused -t floating || \
|
||||
bspc node focused -t tiled;
|
||||
|
||||
super + ctrl + f
|
||||
bspc node -t \~fullscreen
|
||||
|
||||
# pseudotile
|
||||
super + p
|
||||
bspc node focused -t pseudo_tiled
|
||||
|
||||
|
||||
#
|
||||
# focus/swap
|
||||
#
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue