You are not logged in.
@buttons
Thanks! Not really the style I was looking for but I am going to try Glass Icons.
@z0phi3l
I really don't think nuoveXT Black will match with the rest of my theme and I think it's a bit to colorful. Thanks anyway.
@ebirtaid
I don't think those will work since it's to much cyan in the grey color. Thanks anyway.
Maybe I have to search for a script or perhaps write my own script which will adjust the colors of a complete icon theme (both svg and png). Guess I have to look into this option as well.
Last edited by PJ (2007-12-11 07:48:18)
Offline
Offline
I installed xmonad and dzen today, and I'm totally impressed
.
Nice! Xdefaults?
Cthulhu For President!
Offline
It's back to Xfce for me (but this time with Openbox ), I wonder what I was doing on Gnome
I'm working hard for an essay I have to submit tomorrow at 4pm... I don't even know if I'll manage... so there's only one solution for now: *coffee!*
Have you Syued today?
Free music for free people! | Earthlings
"Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away." -- A. de Saint-Exupery
Offline
Not quite finished yet, I only started the day before yesterday, but here's my new XMonad setup.
So far I'm really liking XMonad and dzen2.
In the screen you can see:
* 2x dzen2
* trayer (temporary since I can't get stalonetray to align right)
* 3x urxvtc
* htop
* vim
Last edited by Xilon (2007-12-12 04:16:52)
Offline
finferflu, what do you study? Looks interesting.
Also, what's your gtk+ theme, please?
Offline
peets,
I'm doing Biblical Studies on a Religion and Theology course. Very interesting indeed, since incorporates all sorts of topics and disciplines
My Gtk theme is Breathe. Enjoy
Have you Syued today?
Free music for free people! | Earthlings
"Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away." -- A. de Saint-Exupery
Offline
Mo wrote:I installed xmonad and dzen today, and I'm totally impressed
.
Nice! Xdefaults?
Here you go:
http://rafb.net/p/E08aJv19.html
Offline
http://img118.imageshack.us/img118/3003/ssyi8.th.png
I switched back to using gnome and gnome programs solely because of this gtk theme. It came with audacious I think (since it's called aud-default and looks like my audacious).
Nice choice in tunes Jordan Thomas, (Corrosion of Conformity), have a couple of their albums. Haven't listened to em for years, might pull em out and give em a listen now.
Kevin
Last edited by ould (2007-12-12 15:57:56)
Offline
Not quite finished yet, I only started the day before yesterday, but here's my new XMonad setup.
http://img413.imageshack.us/img413/9564 … aj8.th.png
So far I'm really liking XMonad and dzen2.
In the screen you can see:
* 2x dzen2
* trayer (temporary since I can't get stalonetray to align right)
* 3x urxvtc
* htop
* vim
oo, can you share your Xdefaults please?
abcdefghijklmnopqrstuvwxyz
Offline
http://www.csh.rit.edu/~apox/images/scr … -thumb.jpg
My five workspaces merged into one image. I'm running ion3.
Very nice integration all around.
I have to ask though, is that irssi? Because I'm in love with the status part of it and would love to see your config (if it is irssi).
Offline
New configuration for the winter.
Clean
Dirty
firefox, thunar, conky, visibility, stalonetray (auto-hiding) and urxvt on openbox
OB theme: 1977-Blue
Gtk theme: MurrinaNeoAquaish
Icons: PFIcons
Wallpaper: somewhere on flickr...
To get something done, a committee should consist of no more than three persons, two of them absent.
--
My Github
Offline
mqt wrote:My five workspaces merged into one image. I'm running ion3.
Very nice integration all around.
I have to ask though, is that irssi? Because I'm in love with the status part of it and would love to see your config (if it is irssi).
Yes, it is irssi. A lot of it is based on PhrA0k's configuration.
You can find some of my configuration files here.
Last edited by mqt (2007-12-13 09:37:05)
Offline
Nithathrael: Thanks! Here's my xmonad.hs
--
-- ~/.xmonad/xmonad.hs
--
-- import the necessary libraries
import XMonad
import XMonad.ManageHook
import XMonad.Operations
import XMonad.Actions.CycleWS
import XMonad.Actions.DwmPromote
import XMonad.Actions.RotSlaves
import XMonad.Actions.RotView
import XMonad.Actions.SinkAll
import XMonad.Hooks.DynamicLog ( PP(..), dynamicLogWithPP, dzenColor, wrap, defaultPP )
--import XMonad.Layouts
import XMonad.Layout.Grid
import XMonad.Layout.Maximize
import XMonad.Layout.NoBorders ( noBorders, smartBorders )
import XMonad.Layout.Tabbed
import XMonad.Layout.ToggleLayouts
import XMonad.Util.Run
import qualified XMonad.StackSet as W
import qualified XMonad.Actions.FlexibleResize as Flex
import qualified Data.Map as M
import Data.Bits ((.|.))
import Data.Ratio
import Graphics.X11
import System.IO
statusBarCmd= "dzen2 -bg '#9ab8c2' -fg '#000000' -w 648 -sa c -e '' -fn '-*-lucida-*-r-normal-sans-10-100-75-75-*-58-*-*' -ta l"
main = do din <- spawnPipe statusBarCmd
xmonad $ defaultConfig
{ borderWidth = 1
, normalBorderColor = "#9ab8c2"
, focusedBorderColor = "#63B966"
, workspaces = ["Web", "Conf", "Dev", "Float"] ++ map show [5 .. 9 :: Int]
, terminal = "urxvt"
, modMask = mod1Mask
, defaultGaps = [(15,15,0,0)]
, manageHook = manageHook defaultConfig <+> myManageHook
, logHook = dynamicLogWithPP $ ashrenPP din
, layoutHook = toggleLayouts (noBorders Full) $
smartBorders $ tiled ||| Mirror tiled ||| Full ||| Grid ||| tabbed shrinkText defaultTConf ||| maximize (Tall 1 (3%100) (1%2))
, keys = \c -> myKeys c `M.union` keys defaultConfig c
, mouseBindings = \c -> myMouse `M.union`
mouseBindings defaultConfig c
}
where
tiled = Tall nmaster delta ratio
-- The default number of windows in the master pane
nmaster = 1
-- Default proportion of screen occupied by master pane
ratio = 2/(1+(toRational(sqrt(5)::Double))) -- golden
-- Percent of screen to increment by when resizing panes
delta = 5%100
-- application control
--
myManageHook :: ManageHook
myManageHook = composeAll . concat $
[ [ className =? c --> doFloat | c <- myFloats]
, [ title =? t --> doFloat | t <- myOtherFloats]
-- , [ resource =? r --> doIgnore | r <- myIgnores]
, [ className =? "gecko" --> doF (W.shift "Web") ]
, [ className =? "Opera" --> doF (W.shift "Web") ]
, [ className =? "Leafpad" --> doF (W.shift "Conf") ]
, [ className =? "Gimp" --> doF (W.shift "Float") ]
]
where
myIgnores = ["trayer"]
myFloats = ["feh", "gimp", "Galculator"]
myOtherFloats = ["Bon Echo Preferences"]
-- modify/add default key binds
--
myKeys (XConfig {modMask = modm}) = M.fromList $
[
-- custom dmenu
((modm, xK_p), spawn "exe=`dmenu_path | dmenu -b -fn '-bitstream-bitstream vera sans-medium-r-*-*-12-120-*-*-*-0-*-*' -nb '#000000' -nf '#FFFFFF' -sb '#003aff'` && eval \"exec $exe\"") -- %! Launch dmenu
-- sink all floating windows
, ((modm .|. shiftMask, xK_t), sinkAll)
-- maximize focused window
, ((modm, xK_backslash), withFocused (sendMessage . maximizeRestore))
-- swap focused with master, or master with next in line
-- , ((modm, xK_Return), dwmpromote)
-- rotate slave clients
, ((modm .|. shiftMask, xK_Tab ), rotSlavesUp)
-- cycle through non-empty workspaces
, ((modm .|. shiftMask, xK_Right), rotView True)
, ((modm .|. shiftMask, xK_Left), rotView False)
-- switch to previous workspace
, ((modm, xK_z), toggleWS)
-- toggle to fullscreen.
, ((modm, xK_x), sendMessage ToggleLayout)
-- session management
, ((modm .|. shiftMask .|. controlMask, xK_k), spawn "xkill")
, ((modm .|. shiftMask, xK_End), spawn "sudo shutdown -h now")
, ((modm .|. shiftMask .|. controlMask, xK_Delete), spawn "sudo shutdown -r now")
, ((mod1Mask, xK_l), spawn "xscreensaver-command --lock")
-- application hotkeys
, ((mod1Mask, xK_Return), spawn "urxvtc")
, ((mod1Mask, xK_f), spawn "swiftfox")
, ((mod1Mask, xK_g), spawn "gmrun")
, ((mod1Mask, xK_m), spawn "urxvt -title mc -e mc")
, ((0, xK_Print), spawn "scrot %Y%m%d-ashren.png")
, ((shiftMask, xK_Print), spawn "scrot %Y%m%d-ashren.png -d 3 -t 280x175")
]
-- modify/add default mouse binds
--
myMouse = M.fromList $
[ ((mod1Mask, button3), (\w -> focus w >> Flex.mouseResizeWindow w))
]
-- dynamiclog pretty printer for dzen
--
ashrenPP h = defaultPP
{ ppCurrent = wrap "^fg(#9ab8c2)^bg(#435493)^p(2)^i(/home/edgar/dzen_bitmaps/has_win.xbm)" "^p(2)^fg()^bg()"
, ppVisible = wrap "^bg(grey30)^fg(grey75)^p(2)" "^p(2)^fg()^bg()"
, ppHidden = wrap "^p(2)^i(/home/edgar/dzen_bitmaps/has_app.xbm)" "^p(2)^fg()^bg()"
, ppHiddenNoWindows = id
, ppSep = " ^fg(#000000)^r(2x15)^fg() "
, ppLayout = dzenColor "#B64403" "" .
(\x -> case x of
"Tall" -> "Tall ^i(/home/edgar/dzen_bitmaps/tall.xbm)"
"Mirror Tall" -> "Mirror ^i(/home/edgar/dzen_bitmaps/mtall.xbm)"
"Full" -> "Full ^i(/home/edgar/dzen_bitmaps/full.xbm)"
"Grid" -> "Grid"
"Tabbed" -> "Tabbed"
"Maximize Tall" -> "Maximize"
)
-- , ppTitle = dzenColor "white" "" . wrap "< " " >"
, ppTitle = dzenColor "#000000" "#9ab8c2" . wrap " ^r(4x1)^r(1x10) " " ^r(1x10)^r(4x1) "
, ppOutput = hPutStrLn h
}
You'll find my conkyrc's and links for the bitmaps here:
http://bbs.archlinux.org/viewtopic.php?id=40637
Offline
Switched from Xfce to Openbox.
http://img155.imageshack.us/img155/9116 … sc9.th.jpg
Openbox
Terminal with ncmpc running
Thunar
conky
wbar
tint
stalonetray
Mind sharing your wallpaper? It looks good.
Offline
Offline
Could you share your font? Would go great with my current KDE setup
Arch Linux since 2006
Python Web Developer + Sys Admin (Gentoo/BSD)
Offline
Could you share your font? Would go great with my current KDE setup
I'm not quite sure which font you meant, but you can get them all here: http://home.no/morax/tmp/fonts.tar.gz
Arch64
Offline