11 lines
162 B
Bash
Executable file
11 lines
162 B
Bash
Executable file
#!/bin/sh
|
|
|
|
killall -q polybar
|
|
|
|
if [[ $(cat /etc/hostname) == "sakopc" ]]; then
|
|
polybar pc-monitor-1
|
|
polybar pc-monitor-2
|
|
else
|
|
polybar mainbar
|
|
fi
|
|
|