|
@@ -1,6 +1,6 @@
|
|
|
import System.Posix.Env (getEnv)
|
|
|
import Data.Maybe (maybe)
|
|
|
-import Control.Monad(when)
|
|
|
+import Control.Monad(when, liftM)
|
|
|
|
|
|
import XMonad
|
|
|
import XMonad.Config.Desktop
|
|
@@ -12,6 +12,7 @@ import XMonad.Util.Run(spawnPipe, hPutStrLn, runProcessWithInput)
|
|
|
import XMonad.Layout.Spacing(smartSpacing)
|
|
|
import XMonad.Layout.Tabbed
|
|
|
import XMonad.Layout.NoBorders
|
|
|
+import XMonad.Layout.IndependentScreens
|
|
|
|
|
|
|
|
|
import Data.Map(fromList)
|
|
@@ -41,7 +42,8 @@ myTerminal = "konsole"
|
|
|
myBar = "xmobar"
|
|
|
|
|
|
|
|
|
-myPP = xmobarPP {ppTitle = xmobarColor "green" "" . shorten 50}
|
|
|
+myPP = xmobarPP { ppTitle = \_ -> ""
|
|
|
+ , ppLayout = \_ -> ""}
|
|
|
|
|
|
|
|
|
toggleStrutsKey XConfig {XMonad.modMask = modMask} = (modMask, xK_b)
|
|
@@ -50,11 +52,14 @@ toggleStrutsKey XConfig {XMonad.modMask = modMask} = (modMask, xK_b)
|
|
|
myConfig = defaultConfig { modMask = mod4Mask }
|
|
|
|
|
|
main = do
|
|
|
- xmonad =<< statusBar myBar myPP toggleStrutsKey (ewmh $ docks kde4Config {
|
|
|
+ nScreen <- countScreens
|
|
|
+ xmprocs <- mapM (\dis -> spawnPipe ("xmobar -x " ++ show dis)) [0..nScreen-1]
|
|
|
+ xmonad $ ewmh $ docks $ kde4Config {
|
|
|
|
|
|
- manageHook = manageDocks <+> myManageHook <+> manageHook kde4Config
|
|
|
+
|
|
|
+ manageHook = manageDocks <+> myManageHook
|
|
|
|
|
|
- , layoutHook = desktopLayoutModifiers $ smartBorders $ avoidStruts $
|
|
|
+ , layoutHook = avoidStruts $ desktopLayoutModifiers $ smartBorders $
|
|
|
(smartSpacing 5 $ withBorder 2 $ Tall 1 (3/100) (1/2)) |||
|
|
|
(smartSpacing 5 $ withBorder 2 $ Mirror (Tall 1 (3/100) (1/2))) |||
|
|
|
|
|
@@ -66,20 +71,22 @@ main = do
|
|
|
|
|
|
simpleTabbed
|
|
|
|
|
|
+ , logHook = dynamicLogWithPP myPP {ppOutput = \s -> sequence_ [hPutStrLn h s | h <- xmprocs]}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- , startupHook = startup (startupList ++ xmonadStartupList)
|
|
|
- , handleEventHook = handleEventHook def <+> fullscreenEventHook
|
|
|
+
|
|
|
+ , startupHook = startup startupList
|
|
|
+ , handleEventHook = handleEventHook def <+> fullscreenEventHook <+> docksEventHook
|
|
|
, modMask = mod4Mask
|
|
|
, keys = \c -> mySetKeys c `M.union` keys kde4Config c
|
|
|
}
|
|
|
- `removeKeys` myRemoveKeys)
|
|
|
+ `removeKeys` myRemoveKeys
|
|
|
|
|
|
xmonadStartupList =
|
|
|
[ "feh --bg-scale ~/Owncloud/Backgrounds/Xmbindings.png"
|
|
|
- , "trayer --edge top --align right --SetDockType true --SetPartialStrut true --expand true --width 10 --transparent true --alpha 0 --tint 0x000000 --height 22"
|
|
|
+
|
|
|
, "pasystray"
|
|
|
, "xfce4-clipman"
|
|
|
, "xbacklight -set 12"
|
|
@@ -88,59 +95,60 @@ xmonadStartupList =
|
|
|
]
|
|
|
|
|
|
mySetKeys conf@(XConfig {XMonad.modMask = myModMask}) =
|
|
|
- M.fromList $ myKeys ++ xmonadKeys
|
|
|
+
|
|
|
+ M.fromList $ myKeys
|
|
|
where
|
|
|
- xmonadKeys = [
|
|
|
-
|
|
|
- ((controlMask, xK_Print), spawn "sleep 0.2; scrot -s")
|
|
|
- , ((0, xK_Print), spawn "scrot")
|
|
|
-
|
|
|
-
|
|
|
- , ((myModMask, xK_p ), spawn "rofi -show run")
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- , ((0, xF86XK_AudioRaiseVolume),
|
|
|
- spawn "pactl set-sink-volume alsa_output.pci-0000_00_1f.3.analog-stereo +5%")
|
|
|
- , ((0, xF86XK_AudioLowerVolume),
|
|
|
- spawn "pactl set-sink-volume alsa_output.pci-0000_00_1f.3.analog-stereo -5%")
|
|
|
- , ((0, xF86XK_AudioMute),
|
|
|
- spawn "pactl set-sink-mute alsa_output.pci-0000_00_1f.3.analog-stereo toggle")
|
|
|
-
|
|
|
-
|
|
|
- , ((0, xF86XK_MonBrightnessUp),
|
|
|
- let
|
|
|
- returnValM = fmap init $ runProcessWithInput "xbacklight" [] ""
|
|
|
- in do
|
|
|
- currentBrightness <- returnValM
|
|
|
- if (read currentBrightness :: Double) == 0 then
|
|
|
- spawn "xbacklight -set 2"
|
|
|
- else
|
|
|
- spawn "xbacklight -inc 5")
|
|
|
- , ((0, xF86XK_MonBrightnessDown), spawn "xbacklight -dec 5")
|
|
|
- ]
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
myKeys =
|
|
|
[
|
|
|
|
|
@@ -248,11 +256,11 @@ myRemoveKeys =
|
|
|
[ (mod4Mask, xK_Tab)
|
|
|
, (mod4Mask .|. shiftMask, xK_Tab)
|
|
|
]
|
|
|
-
|
|
|
+ ++
|
|
|
|
|
|
-
|
|
|
+ [(mod4Mask, xK_p)]
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
myManageHook = composeAll . concat $
|
|
|
[ [ className =? c
|
|
@@ -272,6 +280,8 @@ myManageHook = composeAll . concat $
|
|
|
, "ksplashsimple"
|
|
|
, "ksplashqml"
|
|
|
, "ksplashx"
|
|
|
+ , "xmobar"
|
|
|
+ , "plasmashell"
|
|
|
]
|
|
|
|
|
|
startupList :: [String]
|