mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-23 16:41:31 +00:00
11 lines
201 B
Plaintext
11 lines
201 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
case "$2" in
|
||
|
up)
|
||
|
sh /home/user/.config/polybar/network.sh --update
|
||
|
;;
|
||
|
down)
|
||
|
sh /home/user/.config/polybar/network.sh --update
|
||
|
;;
|
||
|
esac
|