summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--system/desktops/ly.nix20
1 files changed, 13 insertions, 7 deletions
diff --git a/system/desktops/ly.nix b/system/desktops/ly.nix
index 7838774..49469b2 100644
--- a/system/desktops/ly.nix
+++ b/system/desktops/ly.nix
@@ -19,10 +19,8 @@ in {
text = "0x00${config.theme.colors.text}";
bold = "0x01${config.theme.colors.text}";
error = "0x00${config.theme.colors.error}";
- save_file = pkgs.writeText "ly-prefs" ''
- ${config.user}
- 1
- '';
+ red = "0x00${config.theme.colors.normal.red}";
+ blue = "0x00${config.theme.colors.normal.blue}";
in {
# general
clear_password = true;
@@ -33,9 +31,6 @@ in {
session_log = "/dev/null";
# state (evil)
tty = 1;
- save = false;
- load = true;
- save_file = toString save_file;
# background
bg = base;
error_bg = base;
@@ -44,6 +39,11 @@ in {
fg = text;
error_fg = error;
border_fg = bold;
+ # animation
+ animation = "colormix";
+ colormix_col1 = blue;
+ colormix_col2 = red;
+ colormix_col3 = "0x20000000";
};
};
@@ -55,5 +55,11 @@ in {
systemd.services.display-manager = {
environment.XDG_CURRENT_DESKTOP = "X-NIXOS-SYSTEMD-AWARE";
};
+
+ # write save file
+ environment.etc."ly/save.txt".text = ''
+ 0
+ ${config.user}:1
+ '';
};
}