feat: Adds arch specific scripts and removes raycast (macOS) specific scripts.

This commit is contained in:
2025-09-21 01:03:39 -04:00
parent 40fe096baa
commit d90146fde3
8 changed files with 103 additions and 145 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/zsh
#
# Toggles the state of the internal laptop monitor, which is useful
# when I'm connected to an external monitor / docks.
monitor="eDP-1"
if hyprctl monitors | grep -q "$monitor"; then
hyprctl keyword monitor "$monitor,disable" 1>/dev/null
else
hyprctl keyword monitor "$monitor,enable" 1>/dev/null
fi