7 lines
100 B
Bash
7 lines
100 B
Bash
|
#!/bin/bash
|
||
|
if [[ "$1" == "stop" ]]; then
|
||
|
killall nm-applet
|
||
|
else
|
||
|
nm-applet --indicator &
|
||
|
fi
|