You are not logged in.
Posting Guidelines
* DO NOT post full resolution screenshots! You can use the "mogrify" command (pacman -S imagemagick) to make a thumbnail of your screenshot:
$ cp screenie.png thumb-screenie.png
$ mogrify -resize 20% thumb-screenie.png
Twenty percent of the original size is great for 1024x768 screenies. You can then upload these images to your server and use the following code to show them on the forum:
[url=http://my.site.com/screenie.png][url]http://my.site.com/thumb-screenie.png[/url][/url]
* Several websites also offer free image hosting, of these ImageShack is very popular and does a neat auto thumbnail:
Use the "Thumbnail for forums" link code that is supplied by ImageShack to post your thumbnail link.
* Once the new month begins please do not post new screenies in the old threads.
* If the screenshot has questionable material that might not be safe to view while at work or in a school setting, please post only a link and not a thumbnail, along with a mention of "Not Safe for Work". Posts that do not adhere to this are subject to deletion without notice at any time.
* Please try to include any links to your wallpaper or configs that you may have and/or the names of your icon theme, running apps, DE, etc. in the same post to reduce unnecessary clutter later.
Last edited by haxit (2009-05-01 02:17:03)
Archi686 User | Old Screenshots | Old .Configs
Vi veri universum vivus vici.
Offline
Archi686 User | Old Screenshots | Old .Configs
Vi veri universum vivus vici.
Offline
Still messing around with rendering backgrounds... I'll get to something that I like eventually this month... hopefully.
Edit: by the way, the background matches up on my monitor even though it doesn't on the screenshot.
Last edited by jwcxz (2009-05-01 03:19:22)
-- jwc
http://jwcxz.com/ | blog
dotman - manage your dotfiles across multiple environments
icsy - an alarm for powernappers
Offline
Offline
Clear (and I mean it, lol:
http://kimag.es/thumbs/73281262.pngwith status bar and dmenu:
http://kimag.es/thumbs/36082462.pngdwm 5.5
i think you win the simplicity award
Offline
@ haxit: mind sharing your ncmpcpp and screen config?
@leo2501: may i have your config.h and wallpaper?
Offline
Clean:
Dirty:
Features:
KDEmod 4.2 with dekorator window decoration engine
Plateau window decoration (I could be wrong about this one)
Glassified plasma theme
Caramello Compact GTK theme (Qtcurve for QT theme)
Hardy Heron wallpaper (just cause I really like it)
Edit: Anyone know how to get my thumbnails to work? I copy/pasted the [url]line and put in the right url but I'm just getting text links...
Last edited by The Orange Peanut (2009-05-01 14:48:24)
Offline
@evr: yes i think so...
@kolbycrouch: here is the config.h and "wallpaper" is "xsetroot -solid '#323232'&" in .xinitrc
/* See LICENSE file for copyright and license details. */
/* appearance */
static const char font[] = "-*-fixed-medium-r-*-*-18-*-*-*-*-*-iso8859-*";
/*static const char font[] = "-*-terminus-medium-*-*-*-16-*-*-*-*-*-iso8859-*"; */
/*static const char font[] = "-*-terminus-medium-r-normal-*-14-*-*-*-*-*-*-*"; */
static const char normbordercolor[] = "#B0B0B0";
static const char normbgcolor[] = "#000000";
static const char normfgcolor[] = "#B0B0B0";
static const char selbordercolor[] = "#B0B0B0";
static const char selbgcolor[] = "#323232";
static const char selfgcolor[] = "#B0B0B0";
static unsigned int borderpx = 0; /* border pixel of windows */
static unsigned int snap = 32; /* snap pixel */
static Bool showbar = False; /* False means no bar */
static Bool topbar = False; /* False means bottom bar */
/* 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 },
{ "MPlayer", NULL, NULL, 0, True },
{ "Swiftweasel", NULL, NULL, 4, False},
{ "Links", NULL, NULL, 4, False},
{ "irefox", NULL, NULL, 4, False},
{ "imperator", NULL, NULL, 4, False},
/* { "Avidemux", NULL, "Avidemux", 6, False},
{ "stellarium", NULL, "stellarium", 7, False},
{ "Celestia", NULL, "Celestia", 7, False},
{ "Google Earth", NULL, "Google Earth", 7, False}, */
{ "feh", NULL, NULL, 0, True },
{ "Wicd", NULL, "Wicd Manager", 9, False },
{ "stalonetray", NULL, NULL, 9, True },
};
/* 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 */
{ "[M]", monocle }, /* first entry is default */
/* { "TTT", bstack }, */
{ "[]=", 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 *termcmdtr[] = { "urxvtc", "-tr", "-sh", "25", NULL };
static const char *screencmd[] = { "urxvtc", "-e", "get_screen", NULL };
static const char *volup[] = { "dvol", "-i", "10", NULL };
static const char *voldown[] = { "dvol", "-d", "10", NULL };
static const char *links[] = { "links", "-g", NULL };
static const char *firefox[] = { "firefox", "www.gmail.com", NULL };
static const char *slock[] = { "slock", NULL };
static const char *wicd[] = { "wicd-client", "--no-tray", NULL };
static const char *statusbar[] = { "get_dzen_statusbar", NULL };
/* static const char *arandr[] = { "arandr", NULL }; */
static const char *xrandrlvds[] = { "xrandr", "--output", "LVDS", "--size", "1024x600", NULL };
static const char *xrandrvga[] = { "xrandr", "--output", "VGA", "--size", "1680x1050", NULL };
static const char *xrandrnormal[] = { "xrandr", "--output", "LVDS", "--rotate", "normal", NULL };
static const char *xrandrrotateleft[] = { "xrandr", "--output", "LVDS", "--rotate", "left", NULL };
static Key keys[] = {
/* modifier key function argument */
{ MODKEY, XK_p, spawn, {.v = dmenucmd } },
{ MODKEY, XK_Return, spawn, {.v = termcmd } },
{ MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmdtr } },
{ MODKEY|ControlMask, XK_Return, spawn, {.v = screencmd } },
{ MODKEY, XK_x, spawn, {.v = volup } },
{ MODKEY, XK_z, spawn, {.v = voldown } },
{ MODKEY, XK_l, spawn, {.v = links } },
{ MODKEY, XK_f, spawn, {.v = firefox } },
{ MODKEY|ControlMask, XK_s, spawn, {.v = slock } },
{ MODKEY, XK_w, spawn, {.v = wicd } },
{ MODKEY, XK_c, spawn, {.v = statusbar } },
{ MODKEY|ControlMask, XK_v, spawn, {.v = xrandrlvds } },
{ MODKEY|ControlMask, XK_b, spawn, {.v = xrandrvga } },
{ MODKEY|ControlMask, XK_n, spawn, {.v = xrandrnormal } },
{ MODKEY|ControlMask, XK_m, spawn, {.v = xrandrrotateleft } },
{ MODKEY, XK_s, 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|ShiftMask|ControlMask, XK_Return, zoom, {0} },
{ MODKEY, XK_Tab, view, {0} },
{ MODKEY, XK_q, 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_b, setlayout, {.v = &layouts[1]} }, */
{ 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} },
};
Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away.
-- Antoine de Saint-Exupery
Offline
@leo: thank you, have you ever had the problem with dwm not recognizing fonts? if i kill X i can see a bunch of dwm errors stating that it cant find iso8859 or something, and it prevents me from changing my font, i hope your config works though.
@lolilolicon: what movie are you playing? and would you mind sharing your wall, i've been somewhat of a wall collector lately.
Last edited by kolbycrouch (2009-05-01 04:32:02)
Offline
@leo: thank you, have you ever had the problem with dwm not recognizing fonts? if i kill X i can see a bunch of dwm errors stating that it cant find iso8859 or something, and it prevents me from changing my font, i hope your config works though.
yes, i don't remember now with what font, but usually if urxvt can display the font, so can dwm, i found the fixed font the best to fit my screen space, with an open urxvt
Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away.
-- Antoine de Saint-Exupery
Offline
@kolbycrouch
The Movie is 'Choke'
The Wall is up there in my last post, the third pic
enjoy^^
This silver ladybug at line 28...
Offline
kolbycrouch wrote:@leo: thank you, have you ever had the problem with dwm not recognizing fonts? if i kill X i can see a bunch of dwm errors stating that it cant find iso8859 or something, and it prevents me from changing my font, i hope your config works though.
yes, i don't remember now with what font, but usually if urxvt can display the font, so can dwm, i found the fixed font the best to fit my screen space, with an open urxvt
my urxvt fonts wont display in dwm, maybe this is fixed in 5.5, btw do you know if the syntax has changed between 5.4 and 5.5, I hope it hasn't because id like to still have my nmaster patch for 5.4.1 working plus id still like to use my old config.
Offline
leo2501 wrote:kolbycrouch wrote:@leo: thank you, have you ever had the problem with dwm not recognizing fonts? if i kill X i can see a bunch of dwm errors stating that it cant find iso8859 or something, and it prevents me from changing my font, i hope your config works though.
yes, i don't remember now with what font, but usually if urxvt can display the font, so can dwm, i found the fixed font the best to fit my screen space, with an open urxvt
my urxvt fonts wont display in dwm, maybe this is fixed in 5.5, btw do you know if the syntax has changed between 5.4 and 5.5, I hope it hasn't because id like to still have my nmaster patch for 5.4.1 working plus id still like to use my old config.
well, i use the same config.h for the 5.5 version, so i think it hasn't change, and for the font selection thing i use xfontsel
Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away.
-- Antoine de Saint-Exupery
Offline
my urxvt fonts wont display in dwm, maybe this is fixed in 5.5,
You need to add the fontpath in xorg.conf
btw do you know if the syntax has changed between 5.4 and 5.5,
Offline
Vanilla KDE 4.2.2
Last edited by toad (2009-05-01 05:15:59)
never trust a toad...
::Grateful ArchDonor::
::Grateful Wikipedia Donor::
Offline
finally got around to throwing in some widgets
awesome 3
clean (with one of the new windows 7 wallpapers )
my music directory is a mess...
edit: haxit, mind sharing your wallpaper? it's really nice
Last edited by ent (2009-05-01 05:36:29)
check this out
http://www.myspace.com/banditsinthewoods
Offline
kolbycrouch wrote:my urxvt fonts wont display in dwm, maybe this is fixed in 5.5,
You need to add the fontpath in xorg.conf
kolbycrouch wrote:btw do you know if the syntax has changed between 5.4 and 5.5,
actually all my fonts are in my fontpath, i get the error "missing fontset: iso8859-x" x being some number like 7 or 5
I cant change to any font, even changing the default terminus size doesnt work, i've tried so many font lines none of which do anything.
Offline
Clean:
http://www.nelsonwells.net/screenshots/ … clean.jpeg
Dirty:
http://www.nelsonwells.net/screenshots/ … dirty.jpeg
Features:
KDEmod 4.2 with dekorator window decoration engine
Plateau window decoration (I could be wrong about this one)
Glassified plasma theme
Caramello Compact GTK theme (Qtcurve for QT theme)
Hardy Heron wallpaper (just cause I really like it)Edit: Anyone know how to get my thumbnails to work? I copy/pasted the [url]line and put in the right url but I'm just getting text links...
awesome man, do you play diablo2?
Offline
hey guys! Just a few quick questions if you don't mind!!
A. How do you manage to have that "archlinux" logo in your console (maybe even terminal?), looks really badass!
B. I've noticed a lot of you guys are on lighter DE/WM is that because your computer isn't up to specs or you don't want to enter bloatville?
C. Anyone know of any panel on KDE4.2 that looks like MACOS or similar but written in QT instead of GTK?
Thanks
Last edited by greenfish (2009-05-01 09:05:25)
ARCH64 archSKYNET server AMD Phenom(tm) II X2 550 HDD 6TB Ram 8GB
Hobbies: Running, Pistol Marksmanship, Classic Music
Offline
I'd like to point out a little error in the opening post: the inner url tags of the code for the clickable thumbnails on the board should be img tags:
[url=http://my.site.com/screenie.png][url]http://my.site.com/thumb-screenie.png[/url][/url]
Should be:
[url=http://my.site.com/screenie.png][img]http://my.site.com/thumb-screenie.png[/img][/url]
Offline
Offline
is that firefox ?
looks pretty awesome
Offline
bangkok_manouel wrote:is that firefox ?
looks pretty awesome
Yes, it's probably Firefox: the add-on he uses is Vimperator, which makes your Firefox handle like Vi(m).
I'd like to know why all the windows shown in his screenshot float, while dwm is set to tiling them
Offline