aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2024-12-25 14:46:09 +0000
committerLeonardo Bishop <me@leonardobishop.com>2024-12-25 14:46:09 +0000
commitf2866e8ad4a9ba0b12ea047b2f72f7d7d457d63f (patch)
tree31f805bc77243166db64ed55c973e13052282af1
parent6bbdbe073e993fb43003d89d7e5a27a1a8a36413 (diff)
Remove unused sway files
-rw-r--r--sway/input.conf (renamed from sway/input.cfg)0
-rw-r--r--sway/output.conf (renamed from sway/output.cfg)0
-rwxr-xr-xsway/scripts/exit-menu.sh18
3 files changed, 0 insertions, 18 deletions
diff --git a/sway/input.cfg b/sway/input.conf
index a4746f7..a4746f7 100644
--- a/sway/input.cfg
+++ b/sway/input.conf
diff --git a/sway/output.cfg b/sway/output.conf
index dc504a2..dc504a2 100644
--- a/sway/output.cfg
+++ b/sway/output.conf
diff --git a/sway/scripts/exit-menu.sh b/sway/scripts/exit-menu.sh
deleted file mode 100755
index a492df8..0000000
--- a/sway/scripts/exit-menu.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-
-entries=" Lock\n󰹆 Suspend\n󰍃 Logout\n󰜉 Reboot\n󰐥 Shutdown"
-
-selected=$(echo -e $entries|wofi --width 100 --height 185 --dmenu --cache-file /dev/null --define content_halign=center --define prompt="Exit menu" | awk '{print tolower($2)}')
-
-case $selected in
- lock)
- swaylock;;
- logout)
- swaymsg exit;;
- suspend)
- exec systemctl suspend;;
- reboot)
- exec systemctl reboot;;
- shutdown)
- exec systemctl poweroff -i;;
-esac