Add custom scripts

This commit is contained in:
2023-12-26 00:14:07 +03:00
parent 897ffc6d1a
commit 523d3f72ac
2 changed files with 68 additions and 0 deletions

9
scripts/toggle-monitor Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
monitor=$(hyprctl -j monitors | jq '.[] | select(.name == "eDP-1") | .id')
if [[ $monitor == "" ]]; then
hyprctl keyword monitor eDP-1,preferred,0x1107,2.0
else
hyprctl keyword monitor eDP-1,disable
fi