This commit is contained in:
ksyasuda
2021-11-03 01:14:21 -07:00
parent 2bada90e42
commit 8eb9630475
26 changed files with 1861 additions and 0 deletions

43
eww/launch_eww Executable file
View File

@@ -0,0 +1,43 @@
#!/bin/bash
## Files and cmd
FILE="$HOME/.cache/eww_launch.xyz"
EWW="$HOME/.bin/eww"
## Run eww daemon if not running already
if [[ ! `pidof eww` ]]; then
${EWW} daemon
sleep 1
fi
## Open widgets
run_eww() {
${EWW} open-many \
background \
profile \
system \
clock \
uptime \
music \
github \
reddit \
twitter \
youtube \
weather \
apps \
mail \
logout \
sleep \
reboot \
poweroff \
folders
}
## Launch or close widgets accordingly
if [[ ! -f "$FILE" ]]; then
touch "$FILE"
run_eww
else
${EWW} close-all
rm "$FILE"
fi