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.*)$`); }); };