You are not logged in.
strankan wrote:ST.x wrote:http://farm4.static.flickr.com/3617/344 … c4c9_m.jpg
Still XMonad <3
Any chance we could get a look at your xmonad.hs and .Xdefaults?
Configs are @ http://github.com/stxza/arch-linux-configs/tree
If any ones you want aren't up to date there just let me know which ones.
Perfect, everything i needed was in there. Thanks!
Offline
Awesome 3.1 and XFCE
e/ Wallpaper: http://www.zixpk.com/2008/04/picture-of-meaning.html
Last edited by mxforce (2009-04-15 11:45:07)
Offline
Nice setup, and AWESOME wallpaper.
You know what comes next..no need to bother...so..link?!
EDIT
Last edited by Wra!th (2009-04-15 12:28:34)
MacGregor DESPITE THEM!
7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00
Offline
http://th05.deviantart.com/fs45/300W/f/ … _haxit.png
I think this might be my favorite shot.
Please share your great wallpaper with us.
Offline
What is that app in left bottom angle? Conky? Could you post the config file please?
Nope, not conky. It's actually FvwmButtons.
Nice setup. could you post a link to your wallpaper please?
I put up a copy here.
Offline
kolbycrouch wrote:Good one. But can you use another image server other than imageshack. it's a major pain in the, you know where. Try omploader or imagehost.
'ok, sorry about that i know its annoying, btw was using your xdefaults but then i started loosing my vision:lol: so i changed em
/edit btw loving everyones awesome setups, i wish i could use it, when i change anything in ~/.config/awesome/rc.lua it doesnt do anything even changing terminals doesnt work
love wraiths dwm setup too, mind sharing your wall , config.h and whatever you using in you bar
Last edited by kolbycrouch (2009-04-15 17:30:10)
Offline
love wraiths dwm setup too, mind sharing your wall , config.h and whatever you using in you bar
Sure mate. It's actually a (TINY!) tile I made.
http://omploader.org/vMWoyeg/8.png
config.h
/* See LICENSE file for copyright and license details. */
/* appearance */
static const char font[] = "-*-terminus-medium-r-normal-*-12-*-*-*-*-*-*-*";
static const char normbordercolor[] = "#b88b10";
static const char normbgcolor[] = "#222222";
static const char normfgcolor[] = "#e0c73d";
static const char selbordercolor[] = "#e0c73d";
static const char selbgcolor[] = "#e0c73d";
static const char selfgcolor[] = "#222222";
static unsigned int borderpx = 3; /* border pixel of windows */
static unsigned int snap = 32; /* snap pixel */
static Bool showbar = True; /* False means no bar */
static Bool topbar = True; /* False means bottom bar */
static Bool usegrab = False; /* True means grabbing the X server
during mouse-based resizals */
/* tagging */
static const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
static unsigned int tagset[] = {1, 1}; /* after start, first tag is selected */
static Rule rules[] = {
/* class instance title tags mask isfloating */
{ "Gimp", NULL, NULL, 0, True },
{ "Firefox", NULL, NULL, 1 << 8, False },
};
/* layout(s) */
static float mfact = 0.55; /* factor of master area size [0.05..0.95] */
static Bool resizehints = False; /* False means respect size hints in tiled resizals */
static Layout layouts[] = {
/* symbol arrange function */
{ "[]=", tile }, /* first entry is default */
{ "[~]", NULL }, /* no layout function means floating behavior */
{ "[ ]", monocle },
};
/* key definitions */
#define MODKEY Mod4Mask
#define TAGKEYS(KEY,TAG) \
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
{ MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
/* helper for spawning shell commands in the pre dwm-5.0 fashion */
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
/* commands */
static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
static const char *termcmd[] = { "urxvt", NULL };
static Key keys[] = {
/* modifier key function argument */
{ MODKEY, XK_p, spawn, {.v = dmenucmd } },
{ MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
{ MODKEY, XK_b, togglebar, {0} },
{ MODKEY, XK_j, focusstack, {.i = +1 } },
{ MODKEY, XK_k, focusstack, {.i = -1 } },
{ MODKEY, XK_h, setmfact, {.f = -0.05} },
{ MODKEY, XK_l, setmfact, {.f = +0.05} },
{ MODKEY, XK_Return, zoom, {0} },
{ MODKEY, XK_Tab, view, {0} },
{ MODKEY|ShiftMask, XK_c, killclient, {0} },
{ MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
{ MODKEY, XK_space, setlayout, {0} },
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
{ MODKEY, XK_0, view, {.ui = ~0 } },
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
TAGKEYS( XK_1, 0)
TAGKEYS( XK_2, 1)
TAGKEYS( XK_3, 2)
TAGKEYS( XK_4, 3)
TAGKEYS( XK_5, 4)
TAGKEYS( XK_6, 5)
TAGKEYS( XK_7, 6)
TAGKEYS( XK_8, 7)
TAGKEYS( XK_9, 8)
{ MODKEY|ShiftMask, XK_q, quit, {0} },
};
/* button definitions */
/* click can be a tag number (starting at 0),
* ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
static Button buttons[] = {
/* click event mask button function argument */
{ ClkLtSymbol, 0, Button1, setlayout, {0} },
{ ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
{ ClkWinTitle, 0, Button2, zoom, {0} },
{ ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
{ ClkClientWin, MODKEY, Button1, movemouse, {0} },
{ ClkClientWin, MODKEY, Button2, togglefloating, {0} },
{ ClkClientWin, MODKEY, Button3, resizemouse, {0} },
{ ClkTagBar, 0, Button1, view, {0} },
{ ClkTagBar, 0, Button3, toggleview, {0} },
{ ClkTagBar, MODKEY, Button1, tag, {0} },
{ ClkTagBar, MODKEY, Button3, toggletag, {0} },
};
dwm-status.sh (I run this in my ~/.xinitrc before dwm
#!/bin/sh
while (true); do
TEMP=$(cat /proc/acpi/thermal_zone/THRM/temperature | awk '{print $2"C"}')
FREQ=$(cpufreq-info | awk '/current CPU frequency/ {print $5"MHz"}')
DATE=$(echo -n $(date +%B,\ %d\ -\ %I:%M\ %p))
#SDA1=$(df -h | awk '/sda1/ {print $4"/"$2}')
SDA2=$(df -h | awk '/sda2/ {print $4"/"$2}')
INFO=$(echo -n "Storage: $SDA2 :: CPUFreq: $FREQ :: Temperature $TEMP :: $DATE")
sleep 1
xsetroot -name "$INFO"
done
The DWM 5.4.1 I use is a bit hacked though. As you may see the selected window's title is not "inversed" on the bar. I edited dwm.c to get what you see (simply switched the drawing GC used from dc.sel to dc.norm).
I also made it click to focus instead of that awful sloppy
Last edited by Wra!th (2009-04-16 08:30:08)
MacGregor DESPITE THEM!
7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00
Offline
Daisuke_Aramaki wrote:kolbycrouch wrote:Good one. But can you use another image server other than imageshack. it's a major pain in the, you know where. Try omploader or imagehost.
'ok, sorry about that i know its annoying, btw was using your xdefaults but then i started loosing my vision:lol: so i changed em
/edit btw loving everyones awesome setups, i wish i could use it, when i change anything in ~/.config/awesome/rc.lua it doesnt do anything even changing terminals doesnt work
love wraiths dwm setup too, mind sharing your wall , config.h and whatever you using in you bar
thanks mate. a direct link to the image would work fine with imageshack. its not just me, you will probably see a lot of posts about people requesting not to use imageshack. and yeah my xdefaults colors won't appeal to many. glad that you gave it a shot.
"You know what I found? Right in the kernel, in the heart of the operating system, I found a developer's comment that said, `Does this belong here?`" -- Simon Lok about Linux kernel in 2005
Reflections on the Strange and the not so Strange
http://skinwalker.wordpress.com
Offline
Wallpaper please.
"You know what I found? Right in the kernel, in the heart of the operating system, I found a developer's comment that said, `Does this belong here?`" -- Simon Lok about Linux kernel in 2005
Reflections on the Strange and the not so Strange
http://skinwalker.wordpress.com
Offline
mzapotoczny wrote:Wallpaper please.
Here you go http://lastscionz.deviantart.com/art/YotsuBOT-99976662
Offline
Daisuke_Aramaki wrote:mzapotoczny wrote:Wallpaper please.
Here you go http://lastscionz.deviantart.com/art/YotsuBOT-99976662
thanks a lot.
"You know what I found? Right in the kernel, in the heart of the operating system, I found a developer's comment that said, `Does this belong here?`" -- Simon Lok about Linux kernel in 2005
Reflections on the Strange and the not so Strange
http://skinwalker.wordpress.com
Offline
Offline
wow, awesome Awesome config.^^ Mind sharing your rc.lua?
Offline
Could I have everything relevant to your battery widget?
Offline
Your dock looks very cute!
May I ask what it is?
Offline
Offline
Still on dwm, figured i'd be back on fvwm by now but using pertag and push made its so nice here.
https://dl.getdropbox.com/u/907980/Scre … -thumb.png
https://dl.getdropbox.com/u/907980/Scre … -thumb.png
Very nice desktop.
Last edited by dziq (2009-04-16 10:06:24)
Offline
Offline
http://omploader.org/vMWo3bQ/ootput-scr … -thumb.png
Featured git hub contains necessary confs
Nice setup
Mind sharing your irssi theme?
edit: nvm that's weechat I believe
Last edited by Wra!th (2009-04-16 10:48:58)
MacGregor DESPITE THEM!
7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00
Offline
Still on dwm, figured i'd be back on fvwm by now but using pertag and push made its so nice here.
Which firefox theme is that? Did you reverse the fx colors, or is this defined explicitly somewhere. I wouldn't mind taking a peek at your confs
Offline