blob: 1b8f46bda42714b8aaaababd8c24146e0ca3b9a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/zsh
# kill running scripts, just in case they are
killall sysinfo weather ws_bar sysinfo_bar lemonbar
./functions/sysinfo &
./functions/weather &
./ws_bar | lemonbar -g 600x21+0+0 -B '#00000000' -p -F '#ffffff' -f "Source Han Sans JP:size=10" -o -3 -f "RobotoMono Nerd Font:style=Regular:size=15" -f -n "workspaceinfo-bar" -o 0 &
./sysinfo_bar | lemonbar -g 1020x21+346+0 -B '#171520' -p -F '#ffffff' -f "Source Han Sans JP:size=10" -o -3 -f "RobotoMono Nerd Font:style=Regular:size=15" -f -n "sysinfo-bar" -o 0
|