You are not logged in.
Offline
Something different for the start of the month: dminiwm and bipolarbar
http://ompldr.org/tZXl3MQEdit: Changed the name of the bar.
Nice colors there, what's your GTK theme or is it a mod?
Offline
If you have built castles in the air, your work need not be lost; that is where they should be. Now put foundations under them.
Henry David Thoreau
Registered Linux User: #559057
Offline
Offline
jasonwryan wrote:stlarch wrote:^^Could a mod please remove that on principle alone!? It's hurting my eyes.^^
n1x4 wrote:From:Chernobyl
That was a thumbnail, 250x250.... What's with the hate on Windows? That's against the rules right there...
No issue with the content, but you may want to check how you create your thumbs: 320 != 250
Offline
moetunes wrote:Something different for the start of the month: dminiwm and bipolarbar
http://ompldr.org/tZXl3MQEdit: Changed the name of the bar.
Nice colors there, what's your GTK theme or is it a mod?
It's my own hackage of a Clearlooks theme.
You're just jealous because the voices only talk to me.
Offline
Last.Fm
thou shalt not kill -9
Offline
Current dwm setup on my Laptop
clean
http://i.imgur.com/T1eFN.pngspecs
http://i.imgur.com/CrtY8.pngkinda busy
http://i.imgur.com/HDGlU.png
Love the wallpaper!
Offline
@kismet what's that browser?
Offline
ProperWM - another fork of DWM - with the drawing code ported to a toolkit I made with cairo, optimized tiling, smart borders, padding, and lots of other crap. Fork is here: https://github.com/speeddefrost/properwm
Last edited by speeddefrost (2012-08-04 03:02:16)
Offline
Current dwm setup on my Laptop
Amazing wallpaper. Really had a good laugh.
Offline
mutterschiff wrote:Current dwm setup on my Laptop
Amazing wallpaper. Really had a good laugh.
Last.Fm
thou shalt not kill -9
Offline
Thanks, though I found it on deviantart through google reverse image search
Offline
ProperWM - another fork of DWM - with the drawing code ported to a toolkit I made with cairo, optimized tiling, smart borders, padding, and lots of other crap. Fork is here: https://github.com/speeddefrost/properwm
This is nice! Can you share colorscheme and vim theme?
Offline
ProperWM - another fork of DWM - with the drawing code ported to a toolkit I made with cairo, optimized tiling, smart borders, padding, and lots of other crap. Fork is here: https://github.com/speeddefrost/properwm
Nice Why don't you make a post about your WM in the Community Contributions section?
If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres
Offline
Current dwm setup on my Laptop
clean
[IMAGE REMOVED]specs
[IMAGE REMOVED]kinda busy
[IMAGE REMOVED]
Could you please share how did you manage to apply statuscolors and uselessgap ?
Simplicity is prerequisite for reliability. -- Edsger Dijkstra
Offline
Could you please share how did you manage to apply statuscolors and uselessgap ?
I think I used this patch https://bbs.archlinux.org/viewtopic.php … 0#p1111070 and build it through abs with slightly modified PKGBUILD.
Place your config.h and the patch(I named it dwm-6.0-patchsammlung) in the same directory as the PKGBUILD, update the md5sums, and run makepkg.
I think I had added this to my config.h:
#define NUMCOLORS 7
static const char colors[NUMCOLORS][ColLast][8] = {
// border foreground background
{ "#bbb", "#bbb", "#000" }, // normal
{ "#78c", "#78c", "#000" }, // selected
{ "#ca6", "#ca6", "#000" }, // warning
{ "#c55", "#c55", "#000" }, // error
{ "#000", "#78c", "#000" }, // statuscolors
{ "#4c4", "#4c4", "#000" }, // ok
{ "#cc4", "#cc4", "#000" }, // bad
// add more here
};
static const unsigned int gappx = 3; /* gap between windows */
static const Bool clicktofocus = True; /* Change focus only on click */
the "rules"-array gets the new field 'iscentered', like:
static const Rule rules[] = {
/* class instance title tags mask isfloating iscentred monitor */
//...
{ "Firefox", NULL, NULL, 1 << 1, False, False, -1 },
//...
};
and removed
{ MODKEY, XK_i, incnmaster, {.i = +1 } },
{ MODKEY, XK_d, incnmaster, {.i = -1 } },
This is all I remember atm - I hope this helps
Last edited by mutterschiff (2012-08-04 16:12:04)
Last.Fm
thou shalt not kill -9
Offline
#binarii @ irc.binarii.net
Matrix Server: https://matrix.binarii.net
-------------
Allan -> ArchBang is not supported because it is stupid.
Offline
speeddefrost wrote:ProperWM - another fork of DWM - with the drawing code ported to a toolkit I made with cairo, optimized tiling, smart borders, padding, and lots of other crap. Fork is here: https://github.com/speeddefrost/properwm
This is nice! Can you share colorscheme and vim theme?
it's based off the ir_black scheme - with the mode/autocompletion colors changed.
.. and ProperWM colors:
// 6-digit colors only
static const char normal_border_color[] = "#222222";
static const char selected_border_color[] = "#BFBFBF";
static const char urgent_border_color[] = "#FF0000";
// 8-digit colors optional
static const char unused_tag_bg_color[] = "#000000CC";
static const char unused_tag_fg_color[] = "#808080";
static const char normal_tag_bg_color[] = "#000000CC";
static const char normal_tag_fg_color[] = "#628AB3";
static const char current_tag_bg_color[] = "#000000CC";
static const char current_tag_fg_color[] = "#BFBFBF";
static const char selected_tag_bg_color[] = "#000000CC";
static const char selected_tag_fg_color[] = "#B39462";
static const char urgent_tag_bg_color[] = "#990000CC";
static const char urgent_tag_fg_color[] = "#FFFFFF";
static const char ltsym_bg_color[] = "#222222CC";
static const char ltsym_fg_color[] = "#BFBFBF";
static const char title_bg_color[] = "#000000CC";
static const char title_fg_color[] = "#BFBFBF";
static const char selstat_bg_color[] = "#000000CC";
static const char selstat_fg_color[] = "#BFBFBF";
static const char status_bg_color[] = "#222222CC";
static const char status_fg_color[] = "#BFBFBF";
Offline