1
1
Fork 0

Compare commits

...

3 commits

Author SHA1 Message Date
1cef559f96
zen: modify config
Signed-off-by: Myned <dev@bjork.tech>
2025-02-18 13:05:43 -06:00
3def030b69
niri: remove open-on-workspace rules
Signed-off-by: Myned <dev@bjork.tech>
2025-02-18 13:05:33 -06:00
dc5c662731
hyprland: add back debug settings
Signed-off-by: Myned <dev@bjork.tech>
2025-02-18 13:05:22 -06:00
3 changed files with 9 additions and 15 deletions

View file

@ -50,6 +50,12 @@ in {
zoom_rigid = true; zoom_rigid = true;
}; };
# https://wiki.hyprland.org/Configuring/Variables/#debug
debug = {
disable_scale_checks = true; #!! Unsupported, may result in pixel misalignment
enable_stdout_logs = true; # systemd-cat
};
# https://wiki.hyprland.org/Configuring/Variables/#decoration # https://wiki.hyprland.org/Configuring/Variables/#decoration
decoration = { decoration = {
blur.enabled = false; blur.enabled = false;

View file

@ -59,8 +59,6 @@ in {
{ {
# Android # Android
matches = [{app-id = "^[Ww]aydroid.*$";}]; matches = [{app-id = "^[Ww]aydroid.*$";}];
open-on-workspace = "2";
} }
{ {
@ -85,7 +83,6 @@ in {
else 0.8; else 0.8;
min-width = builtins.floor (config.custom.width * 0.3); min-width = builtins.floor (config.custom.width * 0.3);
open-on-workspace = "2";
} }
{ {
@ -96,8 +93,6 @@ in {
{app-id = "^Element$";} {app-id = "^Element$";}
{app-id = "^org\.telegram\.desktop$";} {app-id = "^org\.telegram\.desktop$";}
]; ];
open-on-workspace = "3";
} }
{ {
@ -111,8 +106,6 @@ in {
{app-id = "^codium$";} {app-id = "^codium$";}
{app-id = "^obsidian$";} {app-id = "^obsidian$";}
]; ];
open-on-workspace = "2";
} }
{ {
@ -131,7 +124,6 @@ in {
]; ];
default-column-width = {}; # Window-defined default-column-width = {}; # Window-defined
open-on-workspace = "1";
variable-refresh-rate = true; variable-refresh-rate = true;
} }
@ -147,8 +139,6 @@ in {
{app-id = "^totem$";} {app-id = "^totem$";}
{app-id = "^YouTube Music$";} {app-id = "^YouTube Music$";}
]; ];
open-on-workspace = "3";
} }
{ {
@ -158,8 +148,6 @@ in {
{app-id = "^libreoffice$";} {app-id = "^libreoffice$";}
{app-id = "^ONLYOFFICE Desktop Editors$";} {app-id = "^ONLYOFFICE Desktop Editors$";}
]; ];
open-on-workspace = "2";
} }
(let (let
@ -217,7 +205,6 @@ in {
]; ];
open-floating = false; open-floating = false;
open-on-workspace = "1";
} }
### Overrides ### Overrides

View file

@ -33,6 +33,7 @@ in {
"zen.pinned-tab-manager.close-shortcut-behavior" = "reset-unload-switch"; "zen.pinned-tab-manager.close-shortcut-behavior" = "reset-unload-switch";
"zen.pinned-tab-manager.restore-pinned-tabs-to-pinned-url" = true; "zen.pinned-tab-manager.restore-pinned-tabs-to-pinned-url" = true;
"zen.splitView.change-on-hover" = true; "zen.splitView.change-on-hover" = true;
"zen.tab-unloader.enabled" = false;
"zen.tab-unloader.timeout-minutes" = 60; "zen.tab-unloader.timeout-minutes" = 60;
"zen.theme.accent-color" = "#d33682"; "zen.theme.accent-color" = "#d33682";
"zen.theme.color-prefs.colorful" = false; "zen.theme.color-prefs.colorful" = false;
@ -45,10 +46,10 @@ in {
"zen.view.use-single-toolbar" = false; "zen.view.use-single-toolbar" = false;
"zen.welcome-screen.enabled" = false; "zen.welcome-screen.enabled" = false;
"zen.welcome-screen.seen" = true; "zen.welcome-screen.seen" = true;
"zen.workspaces.container-specific-essentials-enabled" = true; "zen.workspaces.container-specific-essentials-enabled" = false;
"zen.workspaces.force-container-workspace" = true; "zen.workspaces.force-container-workspace" = true;
"zen.workspaces.hide-deactivated-workspaces" = true; "zen.workspaces.hide-deactivated-workspaces" = true;
"zen.workspaces.individual-pinned-tabs" = false; "zen.workspaces.individual-pinned-tabs" = true;
"zen.workspaces.show-icon-strip" = true; "zen.workspaces.show-icon-strip" = true;
"zen.workspaces.show-workspace-indicator" = false; "zen.workspaces.show-workspace-indicator" = false;
}; };