From 97cdc7084e6928b9bcb962cd8c82832e70bf1a36 Mon Sep 17 00:00:00 2001 From: ZachIR Date: Sat, 26 Jul 2025 21:06:45 -0500 Subject: Make dir for scroll/config.d in Makefile --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index ab6e0da..1c66195 100644 --- a/Makefile +++ b/Makefile @@ -33,6 +33,7 @@ install-scrollconf: scroll/config.d/user.conf scroll/config.d/user.conf: @echo "Generating user.conf..." + @mkdir -p scroll/config.d @echo 'set $$home' $(shell echo $(HOME)) > scroll/config.d/user.conf @echo "Done." -- cgit v1.2.3 From d3de3f03fd3b57b0dc124747d7edd2de330f0d2d Mon Sep 17 00:00:00 2001 From: ZachIR Date: Sat, 26 Jul 2025 21:06:59 -0500 Subject: Add binding to lock screen --- scroll/config | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scroll/config b/scroll/config index c115cd9..e689a61 100644 --- a/scroll/config +++ b/scroll/config @@ -124,8 +124,12 @@ animations { bindsym $mod+e exec $rmenu bindsym $mod+d exec $dmenu + # Launch your file manager bindsym $mod+Alt+f exec $filemanager + # Lock your screen + bindsym $mod+q exec loginctl lock-session + # Drag floating windows by holding down $mod and left mouse button. # Resize them with right mouse button + $mod. # Despite the name, also works for non-floating windows. -- cgit v1.2.3 From 309f88b7875c27e063062fdebe71058765b199ee Mon Sep 17 00:00:00 2001 From: ZachIR Date: Sun, 27 Jul 2025 06:31:02 -0500 Subject: Fix brave menu xray on hyprland --- hypr/hyprland.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index ba1f623..059ba5a 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -206,6 +206,8 @@ plugin { # windowrule = float, class:^(kitty)$, title:^(kitty)$ # See https://wiki.hyprland.org/Configuring/Window-Rules/ for more windowrulev2 = workspace special:easyeffects silent, class: ^(com\.github\.wwmm\.easyeffects)$ +# Fix brave xray menus +windowrulev2 = xray 0, class: ^(\s*), title: ^(\s*)$ #}}} #{{{ Mods -- cgit v1.2.3