You are not logged in.
Click for full size.
http://th01.deviantart.net/fs71/300W/f/ … Reason.png
Wally please!
Offline
http://www.upload3r.com/serve/220210/1266880703.png
I should probably switch to openbox/pekwm at some point...
Very nice!
Theme used?
Thanks
rent0n@deviantART | rent0n@bitbucket | rent0n@identi.ca | LRU #337812
aspire: Acer Aspire 5920 Arch Linux x86_64 | beetle: Gericom Beetle G733 Arch Linux i686
Offline
I switched cold-turkey to evilwm and don't miss tiling a bit. I mainly just use terminal and browser anyway. For terminal there is tmux and browser and other possible misc apps (e.g. gpicview, zathura...) are not an issue, I can also put them in another virtual desktop if need be.
I toyed with OpenBSD's cwm (linux branch from chneukirchen) for a bit but added features over evilwm are not attractive for me and I found them clunky in use. In contrast, evilwm is smaller, uses less memory and I found it to be just enough for my needs.
So one could say I still tile 'windows' via tmux. For me, this is best of both worlds, easy management of terminals in tmux and added convenience of floating wm for some misc apps out-weight the strict tiling window managers which annoy me more than they help.
P.S. Notice the subtle shadow behind terminal courtesy of xcompmgr:
xcompmgr -c -t-5 -l-5 -r4.2 -o.75 &Offline
Mountainjew wrote:Quite pleased with this one...
bespin seems to be the most popular window decorator for kde 4.4 for archers. I've seen a lot of us using it so far on this month's thread. looks great! how do you guys get the icons though? i havent seen those on the preferences "get new themes" section. i admit i havent looked through all the bespin settings though.
If you go to cloudcity.sourceforge.net and download bespin, there is an icon folder in there with a script to build them from svg's. Then just drag it into your .kde4/share/icons folder ![]()
Offline
thanks, i'll look for that folder
"I know what you're thinking, 'cause right now I'm thinking the same thing. Actually, I've been thinking it ever since I got here:
Why oh why didn't I take the BLUE pill?"
Offline
Reasons wrote:Click for full size.
http://th01.deviantart.net/fs71/300W/f/ … Reason.pngNice, clean and simple, like it alot. Mind sharing your .Xdefaults and Xmonad-config?
Xdefaults
*foreground:#a0a0a0
*background:#1B1D1E
!black
*color0: #1B1D1E
*color8: #505354
!red
*color1: #F92672
*color9: #FF669D
!green
*color2: #A6E22E
*color10: #BEED5F
!yellow
*color3: #FD971F
*color11: #E6DB74
!blue
*color4: #66D9EF
*color12: #66D9EF
!magenta
*color5: #9E6FFE
*color13: #9E6FFE
!cyan
*color6: #5E7175
*color14: #A3BABF
!white
*color7: #CCCCC6
*color15: #F8F8F2xmonad.hs
-------------------- imports --------------------
--necessary
import XMonad
import qualified XMonad.StackSet as W
import qualified Data.Map as M
import System.Exit
import Graphics.X11.Xlib
import IO (Handle, hPutStrLn)
--utilities
import XMonad.Util.Run (spawnPipe)
import XMonad.Actions.NoBorders
--hooks
import XMonad.Hooks.ManageDocks
import XMonad.Hooks.DynamicLog
import XMonad.Hooks.XPropManage
import XMonad.Hooks.FadeInactive
--MO' HOOKS
import Graphics.X11.Xlib.Extras
import Foreign.C.Types (CLong)
--layouts
import XMonad.Layout.NoBorders
import XMonad.Layout.ResizableTile
import XMonad.Layout.Named
import XMonad.Layout.PerWorkspace
import XMonad.Layout.Spacing
import XMonad.Layout.Spiral
import XMonad.Layout.Tabbed
import Data.Ratio((%))
-------------------- main --------------------
main = do
-- h <- spawnPipe "xmobar ~/.xmobarrc"
xmonad $ defaultConfig
{ workspaces = ["main", "code", "else", "4", "5"]
, modMask = mod4Mask
, borderWidth = 2
, normalBorderColor = "#FF6E00"
, focusedBorderColor = "#66D9EF" --"#56c2d6"
, terminal = "urxvt"
, manageHook = manageHook'
, layoutHook = layoutHook'
, keys = keys'
}
-------------------- layouthooks --------------------
layoutHook' = customLayout
customLayout = avoidStrutsOn [u] (spaced ||| Mirror spaced2 ||| tiled ||| noBorders Full)
where
spaced = named "Spacing" $ spacing 3 $ Tall 1 (2/100) (70/100)
spaced2 = named "Spacing" $ spacing 3 $ Tall 1 (2/100) (50/100)
tiled = named "Tiled" $ ResizableTall 1 (2/100) (70/100) []
-------------------- menuhook --------------------
getProp :: Atom -> Window -> X (Maybe [CLong])
getProp a w = withDisplay $ \dpy -> io $ getWindowProperty32 dpy a w
checkAtom name value = ask >>= \w -> liftX $ do
a <- getAtom name
val <- getAtom value
mbr <- getProp a w
case mbr of
Just [r] -> return $ elem (fromIntegral r) [val]
_ -> return False
checkDialog = checkAtom "_NET_WM_WINDOW_TYPE" "_NET_WM_WINDOW_TYPE_DIALOG"
checkMenu = checkAtom "_NET_WM_WINDOW_TYPE" "_NET_WM_WINDOW_TYPE_MENU"
manageMenus = checkMenu --> doFloat
manageDialogs = checkDialog --> doFloat
-------------------- managehook --------------------
manageHook' :: ManageHook
manageHook' = manageHook defaultConfig <+> manageDocks <+> manageMenus <+> manageDialogs <+> myManageHook
myManageHook :: ManageHook
myManageHook = composeAll . concat $
[ [className =? c --> doFloat | c <- myFloats]
, [title =? t --> doFloat | t <- myOtherFloats]
, [className =? im --> doF (W.shift "else") | im <- imMessenger]
-- , [className =? bw --> doF (W.shift "main") | bw <- browsers]
, [className =? e --> doF (W.shift "else") | e <- elseApps]
]
where
myFloats = ["Gimp", "vlc", "Nitrogen", "Thunar", "Leafpad"]
myOtherFloats = ["Downloads", "Firefox Preferences", "Save As...", "Send file", "Open", "File Transfers"]
imMessenger = ["Pidgin"]
-- browsers = ["Shiretoko", "Uzbl", "Firefox", "Iceweasel"]
elseApps = ["Mirage", "Gimp"]
-------------------- keybinds --------------------
keys' :: XConfig Layout -> M.Map (KeyMask, KeySym) (X ())
keys' conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $
--launching/killing
[ ((modMask, xK_c ), spawn $ XMonad.terminal conf)
, ((modMask, xK_f ), spawn "firefox")
, ((modMask, xK_space ), kill)
--layouts
, ((modMask, xK_n ), sendMessage NextLayout)
, ((modMask .|. shiftMask, xK_z ), setLayout $ XMonad.layoutHook conf)
, ((modMask, xK_b ), sendMessage ToggleStruts)
-- refresh
, ((modMask, xK_a ), refresh)
, ((modMask .|. shiftMask, xK_w ), withFocused toggleBorder)
-- focus
, ((modMask, xK_Tab ), windows W.focusDown)
, ((modMask, xK_j ), windows W.focusDown)
, ((modMask, xK_k ), windows W.focusUp)
, ((modMask, xK_m ), windows W.focusMaster)
-- swapping
, ((modMask .|. shiftMask, xK_j ), windows W.swapDown )
, ((modMask .|. shiftMask, xK_k ), windows W.swapUp )
-- increase or decrease number of windows in the master area
, ((modMask .|. controlMask, xK_h ), sendMessage (IncMasterN 1))
, ((modMask .|. controlMask, xK_l ), sendMessage (IncMasterN (-1)))
-- resizing
, ((modMask, xK_h ), sendMessage Shrink)
, ((modMask, xK_l ), sendMessage Expand)
, ((modMask .|. shiftMask, xK_h ), sendMessage MirrorShrink)
, ((modMask .|. shiftMask, xK_l ), sendMessage MirrorExpand)
-- quit, or restart
, ((modMask .|. shiftMask, xK_q ), io (exitWith ExitSuccess))
, ((modMask , xK_q ), restart "xmonad" True)
]
++
-- mod-[1..9] %! Switch to workspace N
-- mod-shift-[1..9] %! Move client to workspace N
[((m .|. modMask, k), windows $ f i)
| (i, k) <- zip (XMonad.workspaces conf) [xK_1 .. xK_5]
, (f, m) <- [(W.view, 0), (W.shift, shiftMask)]]Reasons wrote:Click for full size.
http://th01.deviantart.net/fs71/300W/f/ … Reason.pngWally please!
Offline
OS: Arch Linux x86_64
Hostname: joshua-desktop
Kernel: 2.6.32-ARCH
Uptime: 1:15
Window Manager: Openbox [Theme = Onyx]
Wallpaper: Arch Linux something... got it from here.
Icons: Tango
GTK: Candido-Graphite2
Screen Resolution: 1440x900 on nVidia GeForce 6200 AGP [DVI, single monitor]
Packages: 513
RAM: 294 MB / 1503 MB
CPU: Intel(R) Pentium(R) 4 CPU 3.20GHz
Shell: Bash
Root FS: 6.8G / 146G (ext4)
As you can see, my simple desktop. Installed Arch for like the billionth time (distro-hopper... I plan to stay here though) on Sunday. Got it up in no time, just been tweakin stuff now. Enjoy!
Yes, that IS my site. The full site is on my signature, please take a look! Runs on Arch too ;-) I will post any configs as wanted. Just ask. [Note: The site looks best in Firefox 3.6. I use the CSS 3.0 spec, and I use @font-face. IE8 works too, but who likes it?]
Last edited by JoshuaK (2010-02-23 22:15:33)
Meh has new account! This one left behind for history's sake...
Offline
@Ashren
Brainfart on my part. Its Gnome+Emerald. (Alex Pardee made the picture, he's rather awesome)
@n0dix
Icon theme is Amana (here)
Sadly its all .ico (does anyone know a way to batch convert ico to png?)
@renton
I'm just using the Arch GTK theme and a modded emerald theme (rezlooks iirc) I'll post the emerald theme when its less finicky if you want it.
Offline
Sadly its all .ico (does anyone know a way to batch convert ico to png?)
ImageMagick!
@Evert Meulie: That's one of the very clever things about ImageMagick. You just use the extension of the file that you want it to be converted to. Example:
$ convert img1.gif img1.jpg
$ for img in *gif; do
> base=`basename $img .gif`
> convert "$img" "$base.jpg"
> done
DISCLAIMER, DISCLAIMER, DISCLAIMER!!! (shamelessly stolen line from "This Week in Science" podcast...)
I have NOT tried this on my system (too lazy) so this may well do the common things untested procedures tend to do, including (but not limited to) the following:
Burn your house, eat your cat, bunch a newborn in the face... etc.
... 2nd disclaimer: I don't recommend doing anything in that list (Burn your house, eat your cat, bunch a newborn in the face)
Meh has new account! This one left behind for history's sake...
Offline
ratpoison window manager with mplayer cli, alpine, conkeror (which I changed to display web pages in the same Tangoesque theme I use for every other program, since I finally got tired of blinding white web pages
)
Bob
I didn't realize there were so many other Conkeror fans, but since I received several emails about my previous screenshot post and how to change background colors for displayed web pages, I thought I'd post it here too. Basically, it's a custom CSS.
~/.conkerorrc
register_user_stylesheet('file:///home/bob/.conkeror.mozdev.org/style.css');style.css
* {
background-color: #303030 !important;
color: #babdb6 !important;
border-color: black !important;
}
/*
html {
overflow: hidden;
}*/
a {
color: #89b6e2 !important;
}
a:visited {
color: #93d44f !important;
}
body input, body textarea, body select, body button {
color: black !important;
border: 1px solid black !important;
}Bob
Offline
Yes, that IS my site. The full site is on my signature, please take a look! Runs on Arch too ;-) I will post any configs as wanted. Just ask. [Note: The site looks best in Firefox 3.6. I use the CSS 3.0 spec, and I use @font-face. IE8 works too, but who likes it?]
[offtopic] nice site, did you code it all yourself? [/offtopic]
[edit] yes, you did [/edit]![]()
Last edited by toxygen (2010-02-24 13:35:23)
"I know what you're thinking, 'cause right now I'm thinking the same thing. Actually, I've been thinking it ever since I got here:
Why oh why didn't I take the BLUE pill?"
Offline
http://dunz0r.is-a-geek.com/files/shots … -thumb.png
Just got myself two new monitors and rewrote my colourscheme, so I thought I'd up a new one.
Hi! Uhm, may I ask for the wallpaper on the right? ![]()
Offline
dunz0r wrote:http://dunz0r.is-a-geek.com/files/shots … -thumb.png
Just got myself two new monitors and rewrote my colourscheme, so I thought I'd up a new one.
Hi! Uhm, may I ask for the wallpaper on the right?
Since I got it from 4walled I'll give you an omploader-link ![]()
RTFM or GTFO
hax0r.se
Offline
Offline
i'm not actually doing much of anything tonight, but anyways..
Nice wall, do you have a pattern/tile of it?
Offline
OS: Arch Linux x86_64
Hostname: joshua-desktop
Kernel: 2.6.32-ARCH
Uptime: 1:15
Window Manager: Openbox [Theme = Onyx]
Wallpaper: Arch Linux something... got it from here.
Icons: Tango
GTK: Candido-Graphite2
Screen Resolution: 1440x900 on nVidia GeForce 6200 AGP [DVI, single monitor]
Packages: 513
RAM: 294 MB / 1503 MB
CPU: Intel(R) Pentium(R) 4 CPU 3.20GHz
Shell: Bash
Root FS: 6.8G / 146G (ext4)As you can see, my simple desktop. Installed Arch for like the billionth time (distro-hopper... I plan to stay here though) on Sunday. Got it up in no time, just been tweakin stuff now. Enjoy!
Yes, that IS my site. The full site is on my signature, please take a look! Runs on Arch too ;-) I will post any configs as wanted. Just ask. [Note: The site looks best in Firefox 3.6. I use the CSS 3.0 spec, and I use @font-face. IE8 works too, but who likes it?]
Where can I find that script doing the formatting in the terminal
Offline
Where can I find that script doing the formatting in the terminal
http://bbs.archlinux.org/viewtopic.php?id=24208
I dunno if thats what u ment but thats the source of the archey script
Offline
Isildur wrote:Where can I find that script doing the formatting in the terminal
http://bbs.archlinux.org/viewtopic.php?id=24208
I dunno if thats what u ment but thats the source of the archey script
Offline
http://dl.ramov.com/2010-02-23-1544-thumb.png
I switched cold-turkey to evilwm and don't miss tiling a bit. I mainly just use terminal and browser anyway. For terminal there is tmux and browser and other possible misc apps (e.g. gpicview, zathura...) are not an issue, I can also put them in another virtual desktop if need be.
I toyed with OpenBSD's cwm (linux branch from chneukirchen) for a bit but added features over evilwm are not attractive for me and I found them clunky in use. In contrast, evilwm is smaller, uses less memory and I found it to be just enough for my needs.
So one could say I still tile 'windows' via tmux. For me, this is best of both worlds, easy management of terminals in tmux and added convenience of floating wm for some misc apps out-weight the strict tiling window managers which annoy me more than they help.
P.S. Notice the subtle shadow behind terminal courtesy of xcompmgr:
xcompmgr -c -t-5 -l-5 -r4.2 -o.75 &
Very nice,I love evilwm but last time I checked it had horrible multi-monitor support. Anyways, mind sharing your tmux.conf?
Last edited by Saint0fCloud (2010-02-24 22:33:05)
Offline
upsidaisium wrote:i'm not actually doing much of anything tonight, but anyways..
Nice wall, do you have a pattern/tile of it?
here it is: 
(i think i originally found it on deviantart, can't remember for sure)
I've seen young people waste their time reading books about sensitive vampires. It's kinda sad. But you say it's not the end of the world... Well, maybe it is!
Offline
Xmonad w/ irssi (and agon.theme), zim (with candido-light gtk theme), and ncmpcpp (with alternate layout).
I have yet to figure out/use Actions.GridSelect, Layout.SimpleFloat, and Actions.WindowBringer.
Last edited by opothehippo (2010-02-25 02:12:17)
Arch x86_64 | XMonad
Offline
Offline