diff options
| author | Don Williams <don.e.williams@gmail.com> | 2026-02-08 09:34:55 -0500 |
|---|---|---|
| committer | Don Williams <don.e.williams@gmail.com> | 2026-02-08 09:34:55 -0500 |
| commit | 42f3b3f7d09e588efa470108c2fd70721621971b (patch) | |
| tree | 81a05d336da4e6fe00bd8eeeda24ea166899b054 | |
| parent | a56b911dbfd34eceb1a338d24d0904be56c72c6e (diff) | |
Added more CachyOS Winmdow rules, package and hello app
On branch development
Your branch is up to date with 'origin/development'.
Changes to be committed:
modified: CHANGELOG.md
modified: config/hypr/configs/WindowRules.conf
| -rw-r--r-- | CHANGELOG.md | 2 | ||||
| -rw-r--r-- | config/hypr/configs/WindowRules.conf | 24 |
2 files changed, 26 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index aa0c72ed..930df65b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,8 @@ - Fixed setting SDDM/Wallpaper/Waybar defaults on update/installs - Added WindowRule for proton-laucher games - Added WindowRule for CachyOS Kernel Manager +- Added WindowRule for CachyOS Hello app +- Added WindowRule for CachyOS Package Installer app - Added `Hyprshot` screenshot tool set to region capture - `ALT + S` Saves to clipboard and `~/Pictures/Screenshots/` - Not all keyboards have `PrtScr` button diff --git a/config/hypr/configs/WindowRules.conf b/config/hypr/configs/WindowRules.conf index 8c5ebaa0..cffbd77a 100644 --- a/config/hypr/configs/WindowRules.conf +++ b/config/hypr/configs/WindowRules.conf @@ -216,3 +216,27 @@ windowrule { center = on size = (monitor_w*0.6) (monitor_h*0.6) } + +# Named rule for CachyOS Package Installer +windowrule { + name = CachyOS Package Installer + match:class = ^(org.cachyos.cachyos-pi)$ + match:title = ^(CachyOS Package Installer)$ + match:initial_class = ^(org.cachyos.cachyos-pi)$ + match:initial_title = ^(CachyOS Package Installer)$ + float = on + center = on + size = (monitor_w*0.6) (monitor_h*0.6) +} + +# Named rule for CachyOS Hello +windowrule { + name = CachyOS Hello + match:class = ^(CachyOSHello)$ + match:title = ^(CachyOS Hello)$ + match:initial_class = ^(CachyOSHello)$ + match:initial_title = ^(CachyOS Hello)$ + float = on + center = on + size = (monitor_w*0.6) (monitor_h*0.6) +} |
