wms/rwm_clearer.sh
rootniformaticaservice 751761aa33 code changes
2023-03-13 00:42:50 -03:00

18 lines
507 B
Bash
Executable file

#!/bin/sh
## clean screen ##
. $HOME/.config/rootwm/rwm_var
CWL="/tmp/nowm_cwl" # cleared windows list
CWLD=$(cat $CWL | grep "$(lsw -u)") # difference between CWL and currently unmapped windows.
if [ -f $CWL ]; then # if CWL file exist
mapw -m $CWLD # restore windows that have not been mapped yet
rm $CWL # remove CWL file
else # if CWL file not exist
lsw > $CWL # create file with maped windows
mapw -u $(lsw) # clear desktop
fi