summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitmodules3
-rw-r--r--home.nix8
-rw-r--r--xmonad.hs2
m---------xresources0
4 files changed, 5 insertions, 8 deletions
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000..4ca08de
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "xresources"]
+ path = xresources
+ url = git@github.com:bsima/xresources.git
diff --git a/home.nix b/home.nix
index 8415ce9..37b9dd6 100644
--- a/home.nix
+++ b/home.nix
@@ -1,13 +1,7 @@
{ pkgs, ... }:
let
- solarized-xresources =
- pkgs.fetchFromGitHub {
- owner = "blueyed";
- repo = "xresources";
- rev = "e74971bece803839afe310e8c1b4e21b6647d42a";
- sha256 = "1bgd8avd469azalvyq68yq9k5a5g599jhcr4arqi6bi5vbnaq22b";
- };
+ solarized-xresources = ./xresources;
in
{
home = {
diff --git a/xmonad.hs b/xmonad.hs
index 3830c12..f901547 100644
--- a/xmonad.hs
+++ b/xmonad.hs
@@ -15,7 +15,7 @@ insKeys conf@(XConfig {modMask = modMask}) =
, ((0, xK_F6), spawn "xbacklight -inc 1")
, ((modMask, xK_o), spawn "dmenu_run")
, ((modMask, xK_p), spawn "${SHELL:-\"/bin/sh\"} -c passmenu &")
- , ((modMask, xK_y), spawn "${SHELL:-\"/bin/sh\"} -c passmenu &")
+ , ((modMask, xK_y), spawn "passmenu &")
]
myLayout = spiral (6/7)
diff --git a/xresources b/xresources
new file mode 160000
+Subproject e74971bece803839afe310e8c1b4e21b6647d42