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