You are not logged in.
http://i41.tinypic.com/vr7gax.png
Third update of the month...
Shana wallpaper, please.
Offline
tjwoosta wrote:rakka wrote:Graph plotting both cores
http://omploader.org/tMWFqZQwould you mind shaing your rc.lua ?
Hey, sorry for the late response:
rc.lua
functions.lua
awesome, thank you
Offline
Pnevma wrote:http://i40.tinypic.com/25aqk3q.jpg
I don't think anything has really changed since last time. It's just... too pretty and functional to change. I... I might have to stop posting in these threads.
/cries
Very nice setup
What is that launcher on the bottom?
Ah, Someone asked about that last time too. Here, http://bbs.archlinux.org/viewtopic.php? … 96#p472996
Offline
fwojciec: Can I have the wallpaper and the firefox/gtk theme please?
urxvtc / wmii / zsh / configs / onebluecat.net
Arch will not hold your hand
Offline
dr0p wrote:http://i41.tinypic.com/vr7gax.png
Third update of the month...
Can I get a link to that wallpaper?
dr0p wrote:Third update of the month...
Lovely wallpaper, mind sharing?
dr0p wrote:http://i41.tinypic.com/vr7gax.png
Third update of the month...
Shana wallpaper, please.
Arch i686 User
xmonad :: xmobar :: urxvt :: vim
Offline
http://omploader.org/tMWFxaQ
http://omploader.org/tMWFxagOpenbox + xfce4-panel
Where did you get the wallpaper moljac024?
Offline
Gotta love Firefox ram usage with one tab open (19.5% of 1.75gb of ram)
That's odd, indeed. With three tabs open, my firefox's resident size is 147m, less than half of your firefox.
Offline
fwojciec: Can I have the wallpaper and the firefox/gtk theme please?
yep i wan that wallpaper also
Offline
Offline
http://www.loka.pl/outgoing/feb_busy-thumb.png http://www.loka.pl/outgoing/feb_clean-thumb.png
dwm 4.5.1 on Samsung NC10 netbook
Very nice, could you share your config.h
How did you set snap font on statusbar
Last edited by dziq (2009-02-26 09:35:48)
Offline
Very nice, could you share your config.h
How did you set snap font on statusbar
Thanks. Here's config.h:
/* See LICENSE file for copyright and license details. */
/* appearance */
static const char font[] = "-*-snap-*-*-*-*-*-*-*-*-*-*-*-*";
static const char normbordercolor[] = "#1e1e1e";
static const char normbgcolor[] = "#1e1e1e";
static const char normfgcolor[] = "#9f9f9f";
static const char selbordercolor[] = "#262626";
static const char selbgcolor[] = "#3465A4";
static const char selfgcolor[] = "#0e0e0e";
static unsigned int borderpx = 1; /* 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 */
/* { "Firefox", NULL, NULL, 1 << 8, False }, */
{ "Gimp", NULL, NULL, 0, True },
{ "Sonata", NULL, NULL, 0, True },
{ "Guvcview", NULL, NULL, 0, True },
{ "Skype", NULL, NULL, 0, True },
{ "guvcview", NULL, NULL, 0, True },
{ "Galculator", NULL, NULL, 0, True },
};
/* layout(s) */
static float mfact = 0.50; /* 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 */
{ "[M]", monocle }, /* first entry is default */
{ "[]=", tile },
{ "><>", NULL }, /* no layout function means floating behavior */
};
/* key definitions */
#define MODKEY Mod1Mask
#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[] = { "urxvtc", NULL };
static const char *customquit[] = { "killall", "start-dwm.sh", 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[1]} },
{ MODKEY, XK_f, setlayout, {.v = &layouts[2]} },
{ MODKEY, XK_m, setlayout, {.v = &layouts[0]} },
{ 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} },*/
{ MODKEY|ShiftMask, XK_q, spawn, {.v = customquit } },
};
/* 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} },
};
I didn't have to do anything unusual to use snap, it was a simple matter of defining the font variable.
Offline
http://www.loka.pl/outgoing/feb_busy-thumb.png http://www.loka.pl/outgoing/feb_clean-thumb.png
dwm 4.5.1 on Samsung NC10 netbook
Very nice. I just bought a Lenovo S10 and I can't wait to get started with it.
Offline
Jagged Loser wrote:http://omploader.org/tMWFydg http://omploader.org/tMWFydw
I installed Arch Linux 2009.02 x64 and I am running Pekwm, Urxvt, Xcompmgr, and Firefox. I never used Pekwm before today but I have to say that it is pretty nice, once I found a theme I liked. The wallpaper is OrangeFlower by SoulPath and can be found on the DeviantArt website.
Looks really good. I think you need a GTK theme, though.
I've been thinking about that but since I only run one GTK application, Firefox, I haven't been modivated to do it. I'll have to look into it and see if GTK is hard to theme.
Offline
Arch Linux & KDEmod on my EEEPC701
STasks as taskmanager >> http://kde-look.org/content/show.php/ST … tent=99739
It's a bug planet!
Offline
I've been thinking about that but since I only run one GTK application, Firefox, I haven't been modivated to do it. I'll have to look into it and see if GTK is hard to theme.
It's really easy to theme. You don't need to run a daemon, you can just install something like lxappearance, which is a very small but nice theme switcher. To install them, just extract themes to ~/.themes and icons to ~/.icons
Thanks .
fortune | cowsay -f tux
Offline
Hrwa wrote:Pnevma wrote:http://i40.tinypic.com/25aqk3q.jpg
I don't think anything has really changed since last time. It's just... too pretty and functional to change. I... I might have to stop posting in these threads.
/cries
Very nice setup
What is that launcher on the bottom?
Ah, Someone asked about that last time too. Here, http://bbs.archlinux.org/viewtopic.php? … 96#p472996
Cool idea, thanks.
Offline
Desktop theme: Naked
Kdemod: 4.2
Wallpaper would be appreciated.
Offline