diff --git a/config/hosts/aspects/doloro-laptop/home.nix b/config/hosts/aspects/doloro-laptop/home.nix index 0823bb3..422aaa5 100644 --- a/config/hosts/aspects/doloro-laptop/home.nix +++ b/config/hosts/aspects/doloro-laptop/home.nix @@ -13,7 +13,9 @@ modules.sops modules.fish - + ( { + default = true; + }) modules.kitty modules.stylix modules.quickshell @@ -42,7 +44,7 @@ }; home.packages = with pkgs; [ telegram-desktop - legcord + equibop obsidian ]; nixpkgs.config.allowUnfree = true; diff --git a/config/hosts/aspects/doloro-laptop/host.nix b/config/hosts/aspects/doloro-laptop/host.nix index 0d7a25a..ac94232 100644 --- a/config/hosts/aspects/doloro-laptop/host.nix +++ b/config/hosts/aspects/doloro-laptop/host.nix @@ -136,10 +136,10 @@ HandleLidSwitchExternalPower = "suspend"; HandleLidSwitchDocked = "ignore"; }; - systemd.sleep.extraConfig = '' - HibernateDelaySec=30min - SuspendEstimationSec=120 - ''; + # systemd.sleep.extraConfig = '' + # HibernateDelaySec=30min + # SuspendEstimationSec=120 + # ''; # programs.firefox.enable = true; diff --git a/config/modules/quickshell/quickshell/Workspaces.qml b/config/modules/quickshell/quickshell/Workspaces.qml index 1b57d43..2bd6878 100644 --- a/config/modules/quickshell/quickshell/Workspaces.qml +++ b/config/modules/quickshell/quickshell/Workspaces.qml @@ -20,13 +20,22 @@ Item { required property int index property bool focused: HyprlandHelpers.getHyprlandWorkspaceById(index + 1).focused property bool exists: HyprlandHelpers.getHyprlandWorkspaceById(index + 1) ? true : false - state: focused && exists ? "FOCUSED" : "NOT" + state: focused ? "FOCUSED" : (exists ? "EXISTS" : "NOT") states: [ State { name: "FOCUSED" PropertyChanges { target: content width: 10 + scale: 1 + } + }, + State { + name: "EXISTS" + PropertyChanges { + target: content + width: 10 + scale: 0.85 } }, State { @@ -34,6 +43,7 @@ Item { PropertyChanges { target: content width: 10 + scale: 0.75 } } ]