update 14-09-2024.
This commit is contained in:
parent
ae1246c161
commit
c0c97be50b
2 changed files with 25 additions and 17 deletions
|
@ -10,9 +10,9 @@ super + {_,shift +} e
|
|||
########## 1 to 9 ##################################
|
||||
######################
|
||||
|
||||
# open
|
||||
# picker/urlize ##
|
||||
super + {_,shift +}0
|
||||
{picker.sh,share.sh}
|
||||
{picker.sh,urlizer.sh}
|
||||
|
||||
# status ##
|
||||
super + {_,shift +}1
|
||||
|
@ -26,6 +26,10 @@ super + {_,shift +}2
|
|||
super + 3
|
||||
dzpanel.sh -h
|
||||
|
||||
# wms ##
|
||||
super + 4
|
||||
dzpanel.sh -w
|
||||
|
||||
# capturemedia ##
|
||||
super + 5
|
||||
capturemedia.sh
|
||||
|
@ -134,6 +138,10 @@ super + f
|
|||
super + {m,Tab}
|
||||
wms_toggle.sh {-m,-t}
|
||||
|
||||
# widnows to background ##
|
||||
super + b
|
||||
wms_bottom.sh
|
||||
|
||||
####
|
||||
####### layouts ############################
|
||||
###############################################
|
||||
|
@ -145,18 +153,3 @@ super + t
|
|||
# widespread mode ##
|
||||
super + w
|
||||
wms_layout.sh -w
|
||||
|
||||
######### shepperd ##########
|
||||
##################################
|
||||
|
||||
add focused, add all
|
||||
super + {_,shift +}a
|
||||
wms_shepperd.sh {-a,-A}
|
||||
|
||||
delete focused, delete all
|
||||
super + {_,shift +}d
|
||||
wms_shepperd.sh {-d,-D}
|
||||
|
||||
togle
|
||||
super + s
|
||||
wms_shepperd.sh -t
|
||||
|
|
15
opt/wms_rainbow.sh
Executable file
15
opt/wms_rainbow.sh
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# z3bra - 2015 (c) wtfpl
|
||||
# make the current window "rainbowish"... Awesome idea from xero@nixers.net !
|
||||
|
||||
FREQ=${FREQ:-0.1}
|
||||
COLORS=(888888 8064cc 6480cc 64cccc 80cc64 cccc64 cc6464)
|
||||
CUR=$(pfw)
|
||||
|
||||
while :; do
|
||||
for c in "${COLORS[@]}"; do
|
||||
chwb -c $c $(lsw)
|
||||
sleep $FREQ
|
||||
done
|
||||
done
|
Loading…
Reference in a new issue