diff options
author | tv <tv@krebsco.de> | 2017-12-05 16:34:25 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2017-12-05 16:34:25 +0100 |
commit | b2108322202d387fb3889c2de2b850d230f5fbd7 (patch) | |
tree | 5b81e85dfa88846318c62a4f275e6bc1cafac28c /tv/5pkgs/simple | |
parent | 23bfa35662d029195f791ec719d65e4a2b63f3a2 (diff) |
tv xmonad: replace XMONAD_STATE by XMONAD_*_DIR
Diffstat (limited to 'tv/5pkgs/simple')
-rw-r--r-- | tv/5pkgs/simple/xmonad-tv/default.nix | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/tv/5pkgs/simple/xmonad-tv/default.nix b/tv/5pkgs/simple/xmonad-tv/default.nix index 94554f5..94c7015 100644 --- a/tv/5pkgs/simple/xmonad-tv/default.nix +++ b/tv/5pkgs/simple/xmonad-tv/default.nix @@ -71,7 +71,7 @@ main = getArgs >>= \case mainNoArgs :: IO () mainNoArgs = do workspaces0 <- getWorkspaces0 - xmonad' + xmonad -- $ withUrgencyHookC dzenUrgencyHook { args = ["-bg", "magenta", "-fg", "magenta", "-h", "2"], duration = 500000 } -- urgencyConfig { remindWhen = Every 1 } -- $ withUrgencyHook borderUrgencyHook "magenta" @@ -95,17 +95,6 @@ mainNoArgs = do } -xmonad' :: (LayoutClass l Window, Read (l Window)) => XConfig l -> IO () -xmonad' conf = do - path <- getEnv "XMONAD_STATE" - try (readFile path) >>= \case - Right content -> do - hPutStrLn stderr ("resuming from " ++ path) - withArgs ("--resume" : lines content) (xmonad conf) - Left e -> do - hPutStrLn stderr (displaySomeException e) - xmonad conf - getWorkspaces0 :: IO [String] getWorkspaces0 = try (getEnv "XMONAD_WORKSPACES0_FILE") >>= \case |