diff options
author | Ben Sima <ben@bsima.me> | 2018-06-27 09:00:49 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2018-06-27 09:01:17 -0700 |
commit | 42f71b4ae01c3151c0de5caba4805594a3ba8ec9 (patch) | |
tree | fcd2d4ce70517facecd82a7c245a30055d76b29d | |
parent | bcbecfb28eb9676c6315ce80f76ead480169d420 (diff) |
fixes
-rw-r--r-- | .gitmodules | 3 | ||||
-rw-r--r-- | home.nix | 8 | ||||
-rw-r--r-- | xmonad.hs | 2 | ||||
m--------- | xresources | 0 |
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 @@ -1,13 +1,7 @@ { pkgs, ... }: let - solarized-xresources = - pkgs.fetchFromGitHub { - owner = "blueyed"; - repo = "xresources"; - rev = "e74971bece803839afe310e8c1b4e21b6647d42a"; - sha256 = "1bgd8avd469azalvyq68yq9k5a5g599jhcr4arqi6bi5vbnaq22b"; - }; + solarized-xresources = ./xresources; in { home = { @@ -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 |