8 lines
99 B
Bash
8 lines
99 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# 干掉旧进程
|
||
|
pkill polybar
|
||
|
# 等待1秒再启动新的
|
||
|
sleep 1
|
||
|
polybar main -r &
|