Initial commit

This commit is contained in:
2020-04-23 14:50:36 +02:00
commit 0c743950ac
47 changed files with 3838 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/sh
if [ "$(rfkill -o SOFT --noheadings list wlan)" = "blocked" ]; then
notify-send "Airplane mode toggled" "On"
else
notify-send "Airplane mode toggled" "Off"
fi