diff --git a/bin/dmenu b/bin/dmenu new file mode 100755 index 0000000..75988b8 --- /dev/null +++ b/bin/dmenu @@ -0,0 +1,8 @@ +#!/bin/sh +# Script to launch dmenu with colors matching IR_Black theme +# Author: Vic Fryzel +# http://github.com/vicfryzel/xmonad-config + +$(dmenu_path | \ + dmenu -fn '-*-terminus-*-r-normal-*-*-120-*-*-*-*-iso8859-*' \ + -nb '#000000' -nf '#FFFFFF' -sb '#7C7C7C' -sf '#CEFFAC') diff --git a/bin/tray b/bin/tray new file mode 100755 index 0000000..0fae6c0 --- /dev/null +++ b/bin/tray @@ -0,0 +1,9 @@ +#!/bin/sh +# Script to launch trayer in the correct position next to xmobar. +# Author: Vic Fryzel +# http://github.com/vicfryzel/xmonad-config + +# This is setup to display on dual 1680x1050 monitors, with the right monitor +# as primary. Adjust margin as necessary for other resolutions/setups. +trayer --edge top --align left --margin 3240 --width 120 --widthtype pixel --height 12 \ + --padding 1 --tint 0x000000 --transparent true diff --git a/screenshot.png b/screenshot.png new file mode 100644 index 0000000..9f56c7e Binary files /dev/null and b/screenshot.png differ diff --git a/xmobar b/xmonad/xmobar similarity index 98% rename from xmobar rename to xmonad/xmobar index bad9235..88d6207 100644 --- a/xmobar +++ b/xmonad/xmobar @@ -1,4 +1,5 @@ -- xmobar config used by Vic Fryzel +-- Author: Vic Fryzel -- http://github.com/vicfryzel/xmonad-config -- This is setup for dual 1680x1050 monitors, with the right monitor as primary diff --git a/xmonad.hs b/xmonad/xmonad.hs similarity index 99% rename from xmonad.hs rename to xmonad/xmonad.hs index 8572f46..b1d6240 100755 --- a/xmonad.hs +++ b/xmonad/xmonad.hs @@ -1,7 +1,6 @@ --- -- xmonad config used by Vic Fryzel +-- Author: Vic Fryzel -- http://github.com/vicfryzel/xmonad-config --- import System.IO import System.Exit