aboutsummaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authortoni <toni@devlap.local>2014-11-25 14:23:20 +0100
committertoni <toni@devlap.local>2014-11-25 14:23:20 +0100
commitb54c3dcb4da34cdb2e9d92516ed965e3a1a157aa (patch)
treefdd51a17dbd3a86b402343dcbfb402ee37c6d676 /configs
parent6d5e06e725bf85fd5039619b342bc7491d563c70 (diff)
parent99fd112d43bc37104a45df62e37ee33590f701ec (diff)
Merge branch 'master' of github.com:freecoding/foo-scripts
Diffstat (limited to 'configs')
-rwxr-xr-xconfigs/xmobar_hddusage.sh4
-rw-r--r--configs/xmobarrc4
-rw-r--r--configs/xmonad.hs27
3 files changed, 22 insertions, 13 deletions
diff --git a/configs/xmobar_hddusage.sh b/configs/xmobar_hddusage.sh
index e8285e4..bea8391 100755
--- a/configs/xmobar_hddusage.sh
+++ b/configs/xmobar_hddusage.sh
@@ -1,9 +1,9 @@
#!/bin/bash
if [ "x$1" = "xread" ]; then
- OUT=$(iostat | sed -n 's/sda\s*[0-9,]*\s*\([0-9]*\).*$/\1/p')
+ OUT=$(sudo iotop -b -n 1 -P -k -qq | sed -n 's/^Total DISK READ:\s*\([0-9]*\)\..*$/\1/p')
elif [ "x$1" = "xwrite" ]; then
- OUT=$(iostat | sed -n 's/sda\s*[0-9,]*\s*[0-9,]*\s*\([0-9]*\).*$/\1/p')
+ OUT=$(sudo iotop -b -n 1 -P -k -qq | sed -n 's/^.*Total DISK WRITE:\s*\([0-9]*\)\..*$/\1/p')
else
exit 1
fi
diff --git a/configs/xmobarrc b/configs/xmobarrc
index 78d4a42..59759db 100644
--- a/configs/xmobarrc
+++ b/configs/xmobarrc
@@ -12,10 +12,10 @@ Config { font = "-misc-fixed-*-*-*-*-18-*-*-*-*-*-*-*"
, Run Com "~/.xmobar_cputemp.sh" ["MB"] "mtmp" 100
, Run Network "eth0" ["-L","0","-H","32","--normal","green","--high","red"] 10
, Run Network "eth1" ["-L","0","-H","32","--normal","green","--high","red"] 10
- , Run Cpu ["-L","15","-H","50","--normal","green","--high","red"] 10
+ , Run Cpu ["-L","15","-H","50","--normal","green","--high","red"] 20
, Run Memory ["Mem: %"] 200
, Run Swap [] 200
- , Run Date "%a %b (%V) %_d %Y %H:%M:%S" "date" 10
+ , Run Date "%a %b %_d %Y %H:%M (KW%V)" "date" 600
, Run StdinReader
]
, sepChar = "%"
diff --git a/configs/xmonad.hs b/configs/xmonad.hs
index e698351..acec436 100644
--- a/configs/xmonad.hs
+++ b/configs/xmonad.hs
@@ -25,7 +25,7 @@ import qualified Data.Map as M
-- The preferred terminal program, which is used in a binding below and by
-- certain contrib modules.
--
-myTerminal = "/usr/bin/konsole"
+myTerminal = "x-terminal-emulator"
------------------------------------------------------------------------
@@ -33,7 +33,7 @@ myTerminal = "/usr/bin/konsole"
-- The default number of workspaces (virtual screens) and their names.
--
myWorkspaces :: [WorkspaceId]
-myWorkspaces = ["1:term","2:code","3:web","4:vm","5:media"] ++ map show [6..9]
+myWorkspaces = ["1:pidg","2:file","3:web","4:work1","5:work2"] ++ map show [6..9]
------------------------------------------------------------------------
-- Window rules
@@ -52,15 +52,17 @@ myWorkspaces = ["1:term","2:code","3:web","4:vm","5:media"] ++ map show [6..9]
myManageHook = composeAll
[ className =? "Iceweasel" --> doShift "3:web"
, className =? "Icedove" --> doShift "3:web"
- , className =? "Pidgin" --> doShift "1:term"
- , className =? "Eclipse" --> doShift "2:code"
+ , className =? "Pidgin" --> doShift "1:pidg"
+ , className =? "Eclipse" --> doShift "2:file"
, className =? "Kmail" --> doShift "3:web"
- , className =? "Konqueror" --> doShift "2:code"
+ , className =? "Konqueror" --> doShift "2:file"
+ , className =? "Nautilus" --> doShift "2:file"
, resource =? "desktop_window" --> doIgnore
, className =? "Galculator" --> doFloat
+ , className =? "Gource" --> doFloat
, className =? "MPlayer" --> doFloat
- , className =? "VirtualBox" --> doShift "4:vm"
- , className =? "Xchat" --> doShift "5:media"
+ , className =? "VirtualBox" --> doShift "4:work1"
+ , className =? "Xchat" --> doShift "5:work2"
, isFullscreen --> (doF W.focusDown <+> doFullFloat)]
@@ -131,6 +133,14 @@ myKeys conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $
, ((modMask .|. shiftMask, xK_l),
spawn "xscreensaver-command -lock")
+ -- Start Firefox
+ , ((modMask .|. shiftMask, xK_i),
+ spawn "iceweasel")
+
+ -- run demnu
+ , ((modMask .|. shiftMask, xK_d),
+ spawn "dmenu_run -b")
+
-- Take full screenshot in multi-head mode.
-- That is, take a screenshot of everything you see.
, ((modMask .|. shiftMask, xK_p),
@@ -296,8 +306,7 @@ myMouseBindings (XConfig {XMonad.modMask = modMask}) = M.fromList $
--myStartupHook = return ()
myStartupHook :: X ()
myStartupHook = do
--- safeSpawnProg "iceweasel"
- safeSpawnProg "konqueror"
+ safeSpawnProg "iceweasel"
safeSpawnProg "pidgin"
setWMName "LG3D"