36 lines
831 B
Plaintext
36 lines
831 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
export SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
|
||
|
|
||
|
|
||
|
#down the last running theme
|
||
|
if [ -f "/tmp/leftwm-theme-down" ]; then
|
||
|
/tmp/leftwm-theme-down
|
||
|
rm /tmp/leftwm-theme-down
|
||
|
fi
|
||
|
ln -s $SCRIPTPATH/down /tmp/leftwm-theme-down
|
||
|
|
||
|
|
||
|
#boot compton or picom if it exists
|
||
|
if [ -x "$(command -v compton)" ]; then
|
||
|
compton &> /dev/null &
|
||
|
elif [ -x "$(command -v picom)" ]; then
|
||
|
picom &> /dev/null &
|
||
|
fi
|
||
|
|
||
|
#set the theme.ron config
|
||
|
leftwm-command "LoadTheme $SCRIPTPATH/theme.ron"
|
||
|
|
||
|
|
||
|
#set background
|
||
|
if [ -x "$(command -v feh)" ]; then
|
||
|
feh --bg-scale $SCRIPTPATH/background.jpg
|
||
|
fi
|
||
|
|
||
|
index=0
|
||
|
leftwm-state -q -n -t $SCRIPTPATH/sizes.liquid | sed -r '/^\s*$/d' | while read size
|
||
|
do
|
||
|
leftwm-state -w $index -t $SCRIPTPATH/template.liquid | xmobar -p "$size" $SCRIPTPATH/xmobar-config.hs &
|
||
|
let index=index+1
|
||
|
done
|
||
|
|