summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--linux.nix14
-rw-r--r--xmonad.hs4
2 files changed, 12 insertions, 6 deletions
diff --git a/linux.nix b/linux.nix
index f712844..4ca0afb 100644
--- a/linux.nix
+++ b/linux.nix
@@ -7,14 +7,14 @@ let
(builtins.readFile "${homedir}/.local/share/xtheme");
colors = {
"dark" = {
+ highlight = "#5d4d7a";
background = "#292b2e";
foreground = "#b2b2b2";
- highlight = "#5d4d7a";
};
"light" = {
+ highlight = "#67b11d";
background = "#fbf8ef";
foreground = "#655370";
- highlight = "#67b11d";
};
};
in
@@ -31,6 +31,12 @@ in
"XTerm*termName" = "xterm-256color";
"XTerm*metaSendsEscape" = true;
"XTerm*utf8" = true;
+ #"Xautolock.time:" = 1;
+ #"Xautolock.locker:" = "xlock";
+ #"Xautolock.corners:" = "+0-0";
+ #"Xautolock.cornerdelay:" = 3;
+ #"Xautolock.notify:" = 30;
+ #"Xautolock.notifier:" = "notify-send -u critical -t 10000 -- 'Locking screen in 30 seconds'";
};
extraConfig = builtins.readFile(solarized-xresources + "/Xresources." + theme);
};
@@ -150,8 +156,8 @@ in
latitude = "33.044444";
longitude = "-117.271667";
temperature = {
- day = 4000;
- night = 3500;
+ day = 6000;
+ night = 2500;
};
};
diff --git a/xmonad.hs b/xmonad.hs
index 5cee38a..518e6e5 100644
--- a/xmonad.hs
+++ b/xmonad.hs
@@ -38,7 +38,7 @@ data Colors = Colors
lightTheme = Colors
{ highlight = "#67b11d"
- , background = "#efeae9"
+ , background = "#fbf8ef"
, foreground = "#655370"
}
@@ -119,7 +119,7 @@ myTabCfg theme = def
}
myLayout theme = avoidStruts $
- noBorders (tabbed shrinkText $ myTabCfg theme) -- default tab config
+ noBorders (tabbed shrinkText $ myTabCfg theme)
||| tiled
||| Mirror tiled
||| noBorders Full