diff options
author | tv <tv@krebsco.de> | 2017-03-02 19:57:52 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2017-03-02 19:57:52 +0100 |
commit | ed3585bfcfd154688a7e95b2f1179133a1a53734 (patch) | |
tree | 4877fd7a27f7064eb45e0c769b6b85744604fa9f /tv/5pkgs/xmonad-tv | |
parent | 863bb9f912413054156c96d1c39770187736dbfc (diff) |
krebs,tv: /var/setuid-wrappers -> /run/wrappers/bin
Diffstat (limited to 'tv/5pkgs/xmonad-tv')
-rw-r--r-- | tv/5pkgs/xmonad-tv/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tv/5pkgs/xmonad-tv/default.nix b/tv/5pkgs/xmonad-tv/default.nix index c6a622bd1..5ac8f8372 100644 --- a/tv/5pkgs/xmonad-tv/default.nix +++ b/tv/5pkgs/xmonad-tv/default.nix @@ -132,7 +132,7 @@ spawnRootTerm :: X () spawnRootTerm = forkFile urxvtcPath - ["-name", "root-urxvt", "-e", "/var/setuid-wrappers/su", "-"] + ["-name", "root-urxvt", "-e", "/run/wrappers/bin/su", "-"] Nothing spawnTermAt :: String -> X () @@ -143,7 +143,7 @@ spawnTermAt ws = do myKeys :: XConfig Layout -> Map (KeyMask, KeySym) (X ()) myKeys conf = Map.fromList $ - [ ((_4 , xK_Escape ), forkFile "/var/setuid-wrappers/slock" [] Nothing) + [ ((_4 , xK_Escape ), forkFile "/run/wrappers/bin/slock" [] Nothing) , ((_4S , xK_c ), kill) , ((_4 , xK_x ), chooseAction spawnTermAt) |