update 13-09-2024.
This commit is contained in:
parent
657a58a460
commit
ee30d115f2
3 changed files with 16 additions and 29 deletions
13
README.md
13
README.md
|
@ -43,7 +43,7 @@ move / resize windows.
|
|||
|
||||
**THE OPT SCRIPTS**
|
||||
|
||||
**[wms_jumper.sh]** \
|
||||
**[wms_switch.sh]** \
|
||||
jump across windows with menú. (dmenu, fzfmenu, etc.)
|
||||
-next / prev / wid.
|
||||
|
||||
|
@ -68,17 +68,14 @@ alternate color borders according to the state of the battery (only on laptops,
|
|||
**[wms_termrename.sh]** \
|
||||
change terminal name.
|
||||
|
||||
**[wms_clearer.sh]** \
|
||||
clear desktop maping and unmaping windows.
|
||||
|
||||
**[wms_mimic.sh]** \
|
||||
extract colors from the desktop content and use them for decorations, background and more.
|
||||
|
||||
**[wms_backgroundize.sh]** \
|
||||
**[wms_bottom.sh]** \
|
||||
send windows to the background and ingore them.
|
||||
|
||||
**[wms_screensaver.sh]** \
|
||||
experimental scripts that keps windows in a loop of random movements.
|
||||
simple screensaver consisting of the movement of windows across the screen.
|
||||
|
||||
|
||||
**SETUP STEPS**
|
||||
|
@ -88,7 +85,7 @@ experimental scripts that keps windows in a loop of random movements.
|
|||
|
||||
3 - install a daemon for keyboard events, I have used sxhkd. Copy your configuration file, sxhkdrc, from wms/config to .config/sxhkd/.
|
||||
|
||||
4 - copy the wms variables file, wms_var, contained in wms/config to .config/wms/.
|
||||
4 - copy the wms_var file contained in wms/config to .config/wms/.
|
||||
|
||||
5 - add the following lines in .xinitrc or sxrc: \
|
||||
sxhkd & \
|
||||
|
@ -98,4 +95,4 @@ experimental scripts that keps windows in a loop of random movements.
|
|||
|
||||
|
||||
**This spawn doesn't have mouse support** \
|
||||
**Sorry for the verbosity of the comments, the idea is to explain each script in general terms so that it can be easier to hack them**
|
||||
**Sorry for the verbosity of the comments, the idea is to explain each script in general terms so that it can be easier to hack them**
|
||||
|
|
|
@ -1,28 +1,24 @@
|
|||
arigram
|
||||
audio
|
||||
chat
|
||||
code
|
||||
config
|
||||
demo
|
||||
edit
|
||||
files
|
||||
dired
|
||||
emacs
|
||||
game
|
||||
group-1
|
||||
group-2
|
||||
group-3
|
||||
group-4
|
||||
irc
|
||||
irssi
|
||||
mail
|
||||
matrix
|
||||
movie
|
||||
nchat
|
||||
music
|
||||
paint
|
||||
photo
|
||||
read
|
||||
podcast
|
||||
profanity
|
||||
script
|
||||
study
|
||||
system
|
||||
text
|
||||
tox
|
||||
torrent
|
||||
toxic
|
||||
typing
|
||||
video
|
||||
web
|
||||
xmpp
|
||||
|
|
|
@ -3,15 +3,9 @@
|
|||
## use the windows on the desktop as screensavers by moving them randomly ##
|
||||
# wms_screensaver.sh by @root_informatica.
|
||||
|
||||
. /tmp/wms_var
|
||||
. $HOME/.config/wms/wms_var
|
||||
|
||||
FLAG=$1
|
||||
# focused window.
|
||||
FW=$(pfw)
|
||||
# screen width.
|
||||
SW=$(wattr w $(lsw -r))
|
||||
# screen height.
|
||||
SH=$(wattr h $(lsw -r))
|
||||
# windows width = 80% of the screen.
|
||||
WW=$((SW * 80 / 100))
|
||||
# windows height = 80% of the screen.
|
||||
|
|
Loading…
Reference in a new issue