summaryrefslogtreecommitdiff
path: root/.local/bin
diff options
context:
space:
mode:
authorkrolxon <krolyxon@tutanota.com>2025-08-04 09:43:03 +0530
committerkrolxon <krolyxon@tutanota.com>2025-08-04 09:43:03 +0530
commitb8c1f0f4ebc5deb25fdc9849624261b896c3323e (patch)
tree2b81b45134f4051689a6e85103140f85440d7d30 /.local/bin
parent3718ac5eb3aae770e0b50e44b514c276376f1bcf (diff)
hyprland: use kanshi for auto-management of monitors
Diffstat (limited to '.local/bin')
-rwxr-xr-x.local/bin/setwall5
-rwxr-xr-x.local/bin/sysact26
-rwxr-xr-x.local/bin/wrdm9
3 files changed, 0 insertions, 40 deletions
diff --git a/.local/bin/setwall b/.local/bin/setwall
deleted file mode 100755
index 35b5f06..0000000
--- a/.local/bin/setwall
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-xwallpaper --zoom ~/.local/share/bg.jpg
-wal -c
-wal -i ~/.local/share/bg.jpg
-xdotool key super+F5
diff --git a/.local/bin/sysact b/.local/bin/sysact
deleted file mode 100755
index abd0221..0000000
--- a/.local/bin/sysact
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-
-export WM="dwm"
-case "$(readlink -f /sbin/init)" in
- *systemd*) ctl='systemctl' ;;
- *) ctl='loginctl' ;;
-esac
-
-wmpid(){ # This function is needed if there are multiple instances of the window manager.
- tree="$(pstree -ps $$)"
- tree="${tree#*$WM(}"
- echo "${tree%%)*}"
-}
-
-
-case "$(printf " lock\n󰠚 leave $WM\n renew $WM\n󱣻 hibernate\n reboot\n shutdown\n sleep\n display off" | dmenu -i -l 15 -p 'Action: ')" in
- ' lock') slock ;;
- "󰠚 leave $WM") kill -TERM "$(wmpid)" ;;
- " renew $WM") kill -HUP "$(wmpid)" ;;
- '󱣻 hibernate') slock $ctl hibernate -i ;;
- ' sleep') slock $ctl suspend -i ;;
- ' reboot') $ctl reboot -i ;;
- ' shutdown') $ctl poweroff -i ;;
- ' display off') xset dpms force off ;;
- *) exit 1 ;;
-esac
diff --git a/.local/bin/wrdm b/.local/bin/wrdm
deleted file mode 100755
index 5b10f05..0000000
--- a/.local/bin/wrdm
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/env bash
-
-# word=$(dmenu -p "Enter Word: " <&-)
-word=$(cat ~/.local/bin/words.txt | dmenu -l 25 -p "Choose Word: ")
-#$BROWSER https://www.merriam-webster.com/dictionary/$word
-if [[ -n $word ]]; then
- $BROWSER "https://www.google.com/search?hl=en&q=define+$word"
-fi
-