about summary refs log tree commit diff
path: root/packages
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-07-05 16:53:52 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-07-05 16:53:52 +0200
commitf8411a6c219590a480b432a08cbc7e4d1f7e88d9 (patch)
tree01355cc24cc348fd3962380f0696ff39e72c097b /packages
parentLet home-manager manage bash (diff)
downloadnixos-config-f8411a6c219590a480b432a08cbc7e4d1f7e88d9.tar.gz
nixos-config-f8411a6c219590a480b432a08cbc7e4d1f7e88d9.tar.bz2
nixos-config-f8411a6c219590a480b432a08cbc7e4d1f7e88d9.zip
Fetch xmonadctl from github
Diffstat (limited to 'packages')
-rw-r--r--packages/xmonadctl/default.nix5
-rw-r--r--packages/xmonadctl/xmonadctl.hs51
2 files changed, 4 insertions, 52 deletions
diff --git a/packages/xmonadctl/default.nix b/packages/xmonadctl/default.nix
index 01d2566..7968685 100644
--- a/packages/xmonadctl/default.nix
+++ b/packages/xmonadctl/default.nix
@@ -3,4 +3,7 @@ writers.writeHaskellBin "xmonadctl"
 {
   libraries = [ haskellPackages.xmonad-contrib haskellPackages.X11 ];
 }
-  (builtins.readFile ./xmonadctl.hs)
+  (builtins.readFile (builtins.fetchurl {
+    url = "https://raw.githubusercontent.com/xmonad/xmonad-contrib/6ab136eb5606ddec0735bda0be5b82785494a409/scripts/xmonadctl.hs";
+    sha256 = "sha256:04453qq1vvm5s9hmaq60krpca856z0ch1fs2y7hy7wdp3wm17pym";
+  }))
diff --git a/packages/xmonadctl/xmonadctl.hs b/packages/xmonadctl/xmonadctl.hs
deleted file mode 100644
index a3cc73f..0000000
--- a/packages/xmonadctl/xmonadctl.hs
+++ /dev/null
@@ -1,51 +0,0 @@
-import Graphics.X11.Xlib
-import Graphics.X11.Xlib.Extras
-import System.Environment
-import System.IO
-import Data.Char
-
-main :: IO ()
-main = parse True "XMONAD_COMMAND" =<< getArgs
-
-parse :: Bool -> String -> [String] -> IO ()
-parse input addr args = case args of
-        ["--"] | input -> repl addr
-               | otherwise -> return ()
-        ("--":xs) -> sendAll addr xs
-        ("-a":a:xs) -> parse input a xs
-        ("-h":_) -> showHelp
-        ("--help":_) -> showHelp
-        ("-?":_) -> showHelp
-        (a@('-':_):_) -> hPutStrLn stderr ("Unknown option " ++ a)
-
-        (x:xs) -> sendCommand addr x >> parse False addr xs
-        [] | input -> repl addr
-           | otherwise -> return ()
-
-
-repl :: String -> IO ()
-repl addr = do e <- isEOF
-               case e of
-                True -> return ()
-                False -> do l <- getLine
-                            sendCommand addr l
-                            repl addr
-
-sendAll :: String -> [String] -> IO ()
-sendAll addr ss = foldr (\a b -> sendCommand addr a >> b) (return ()) ss
-
-sendCommand :: String -> String -> IO ()
-sendCommand addr s = do
-  d   <- openDisplay ""
-  rw  <- rootWindow d $ defaultScreen d
-  a <- internAtom d addr False
-  m <- internAtom d s False
-  allocaXEvent $ \e -> do
-                  setEventType e clientMessage
-                  setClientMessageEvent e rw a 32 m currentTime
-                  sendEvent d rw False structureNotifyMask e
-                  sync d False
-
-showHelp :: IO ()
-showHelp = do pn <- getProgName
-              putStrLn ("Send commands to a running instance of xmonad. xmonad.hs must be configured with XMonad.Hooks.ServerMode to work.\n-a atomname can be used at any point in the command line arguments to change which atom it is sending on.\nIf sent with no arguments or only -a atom arguments, it will read commands from stdin.\nEx:\n" ++ pn ++ " cmd1 cmd2\n" ++ pn ++ " -a XMONAD_COMMAND cmd1 cmd2 cmd3 -a XMONAD_PRINT hello world\n" ++ pn ++ " -a XMONAD_PRINT # will read data from stdin.\nThe atom defaults to XMONAD_COMMAND.")
\ No newline at end of file