mirror of
https://github.com/dzaczek/Uconsole-i3.git
synced 2025-12-06 11:59:41 +00:00
18 lines
295 B
Bash
18 lines
295 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Icons
|
||
|
|
ICON_UP=""
|
||
|
|
ICON_DOWN=""
|
||
|
|
|
||
|
|
# Check if WireGuard interface wg0 is up
|
||
|
|
if ip link show wg0 &> /dev/null; then
|
||
|
|
# If wg0 is up, display a green icon
|
||
|
|
echo $ICON_UP
|
||
|
|
echo
|
||
|
|
echo \#008000
|
||
|
|
#else
|
||
|
|
# # If wg0 is down, display a gray icon
|
||
|
|
# echo $ICON_DOWN
|
||
|
|
fi
|
||
|
|
|