From 7204ba657b32d479ed28d9c9bdefdff581b4ae43 Mon Sep 17 00:00:00 2001 From: Jas Singh Date: Tue, 31 Dec 2024 02:17:23 -0800 Subject: [PATCH] Fix startup window rules. (#682) --- src/lib/behaviors/hyprlandRules.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/behaviors/hyprlandRules.ts b/src/lib/behaviors/hyprlandRules.ts index ab6e70d..8eabf8d 100644 --- a/src/lib/behaviors/hyprlandRules.ts +++ b/src/lib/behaviors/hyprlandRules.ts @@ -1,18 +1,18 @@ import { hyprlandService } from '../constants/services'; const floatSettingsDialog = (): void => { - hyprlandService.message(`hyprctl keyword windowrulev2 "float, title:^(hyprpanel-settings)$"`); + hyprlandService.message(`keyword windowrulev2 float, title:^(hyprpanel-settings)$`); hyprlandService.connect('config-reloaded', () => { - hyprlandService.message(`hyprctl keyword windowrulev2 "float, title:^(hyprpanel-settings)$"`); + hyprlandService.message(`keyword windowrulev2 float, title:^(hyprpanel-settings)$`); }); }; const floatFilePicker = (): void => { - hyprlandService.message(`hyprctl keyword windowrulev2 "float, title:^((Save|Import) Hyprpanel.*)$"`); + hyprlandService.message(`keyword windowrulev2 float, title:^((Save|Import) Hyprpanel.*)$`); hyprlandService.connect('config-reloaded', () => { - hyprlandService.message(`hyprctl keyword windowrulev2 "float, title:^((Save|Import) Hyprpanel.*)$"`); + hyprlandService.message(`keyword windowrulev2 float, title:^((Save|Import) Hyprpanel.*)$`); }); };