diff options
author | tim.thelion <tim.thelion@gmail.com> | 2007-12-18 07:51:46 +0100 |
---|---|---|
committer | tim.thelion <tim.thelion@gmail.com> | 2007-12-18 07:51:46 +0100 |
commit | 0bc907e32f85c91c4e2433056be6ee73a167ac7b (patch) | |
tree | f65c89772d16a2c7d0b32a433b329f8f58b54d70 /Main.hs | |
parent | a8df4338b64f23b211485868accc188db60af2b9 (diff) | |
download | xmonad-0bc907e32f85c91c4e2433056be6ee73a167ac7b.tar.gz xmonad-0bc907e32f85c91c4e2433056be6ee73a167ac7b.tar.xz xmonad-0bc907e32f85c91c4e2433056be6ee73a167ac7b.zip |
Allow for sharing of home directory across architectures.
darcs-hash:20071218065146-c18d4-533b073367884fbd9212fc547ce9e4e558a21bc9.gz
Diffstat (limited to '')
-rw-r--r-- | Main.hs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -18,6 +18,7 @@ import XMonad import Control.Exception (handle) import System.IO +import System.Info import System.Environment import System.Posix.Process (executeFile) @@ -43,5 +44,5 @@ buildLaunch = do recompile False dir <- getXMonadDir args <- getArgs - executeFile (dir ++ "/xmonad") False args Nothing + executeFile (dir ++ "/xmonad-"++arch++"-"++os) False args Nothing return () |