aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSpencer Janssen <spencerjanssen@gmail.com>2009-11-07 01:48:58 +0100
committerSpencer Janssen <spencerjanssen@gmail.com>2009-11-07 01:48:58 +0100
commitfd1241fdc5f3ce8c6f74d607ba82827c9ac603fe (patch)
tree2020e570086f3792d985ee77ad854a1e62caf3e5 /scripts
parent1291f5f01de5581e5bc86418b9e9819f337a572d (diff)
downloadXMonadContrib-fd1241fdc5f3ce8c6f74d607ba82827c9ac603fe.tar.gz
XMonadContrib-fd1241fdc5f3ce8c6f74d607ba82827c9ac603fe.tar.xz
XMonadContrib-fd1241fdc5f3ce8c6f74d607ba82827c9ac603fe.zip
Add xmonadpropread script
Ignore-this: 8cc7ed36ec1126d0139638148f9642e8 darcs-hash:20091107004858-25a6b-098a5d757d5eff237eee1b2cef4c3893059d1248.gz
Diffstat (limited to 'scripts')
-rw-r--r--scripts/xmonadpropread.hs31
1 files changed, 31 insertions, 0 deletions
diff --git a/scripts/xmonadpropread.hs b/scripts/xmonadpropread.hs
new file mode 100644
index 0000000..88049f2
--- /dev/null
+++ b/scripts/xmonadpropread.hs
@@ -0,0 +1,31 @@
+-- Copyright Spencer Janssen <spencerjanssen@gmail.com>
+-- BSD3 (see LICENSE)
+--
+-- Experimental, will add proper documentation later (famous last words)
+
+import Control.Monad
+import Graphics.X11
+import Graphics.X11.Xlib.Extras
+import Codec.Binary.UTF8.String as UTF8
+import Foreign.C (CChar)
+
+main = do
+ d <- openDisplay ""
+ xlog <- internAtom d "_XMONAD_LOG" False
+
+ root <- rootWindow d (defaultScreen d)
+ selectInput d root propertyChangeMask
+
+ allocaXEvent $ \ep -> forever $ do
+ nextEvent d ep
+ e <- getEvent ep
+ case e of
+ PropertyEvent { ev_atom = a } | a == xlog -> do
+ mwp <- getWindowProperty8 d xlog root
+ maybe (return ()) (putStrLn . decodeCChar) mwp
+ _ -> return ()
+
+ return ()
+
+decodeCChar :: [CChar] -> String
+decodeCChar = UTF8.decode . map fromIntegral