~kris/dots

srice

ref: c8d9c68937f2c331a6bac47481ed40147fe73cba srice/.config/eww/scripts/toggle_wifi.sh -rwxr-xr-x 178 bytes
c8d9c689 — Kris Yotam shell migration: fish -> mksh, reorganize bin/, wallpaper cleanup 4 months ago
                                                                                
1
2
3
4
5
6
7
8
# Script: ~/.config/eww/scripts/toggle_wifi.sh
#!/bin/bash
status=$(nmcli radio wifi)
if [ "$status" = "enabled" ]; then
    nmcli radio wifi off
else
    nmcli radio wifi on
fi