summaryrefslogtreecommitdiff
path: root/dotfiles/system/.local/bin/airplanemodetoggle
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/system/.local/bin/airplanemodetoggle')
-rwxr-xr-xdotfiles/system/.local/bin/airplanemodetoggle33
1 files changed, 0 insertions, 33 deletions
diff --git a/dotfiles/system/.local/bin/airplanemodetoggle b/dotfiles/system/.local/bin/airplanemodetoggle
deleted file mode 100755
index 038a0d6..0000000
--- a/dotfiles/system/.local/bin/airplanemodetoggle
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/bash
-
-if [ "$(printf "On\\nOff" | dmenu -i -p "Set airplane mode:")" = "On" ]
-then
- notify-send "Airplane Mode" "Turning on airplane mode...."
- sudo systemctl stop bluetooth.service
- sudo systemctl stop expressvpn.service
- sudo systemctl stop sshd.service
- systemctl --user stop syncthing.service
- sudo systemctl stop avahi-daemon.service
- sudo systemctl stop cronie.service
- sudo systemctl stop cups.service
- sudo ip link set wlp170s0 down
- sudo systemctl stop wpa_supplicant.service
- sudo systemctl stop NetworkManager.service
- sudo nmcli radio all off
- sudo powertop --auto-tune
- notify-send "Airplane Mode" "Airplane mode is now on."
-else
- notify-send "Airplane Mode" "Turning off airplane mode....."
- sudo nmcli radio wifi on
- sudo systemctl start NetworkManager.service
- sudo systemctl start wpa_supplicant.service
- sudo ip link set wlp170s0 up
- sudo systemctl start bluetooth.service
- sudo systemctl start expressvpn.service
- sudo systemctl start sshd.service
- systemctl --user start syncthing.service
- sudo systemctl start avahi-daemon.service
- sudo systemctl start cronie.service
- sudo systemctl start cups.service
- notify-send "Airplane Mode" "Airplane mode is now off."
-fi