You are not logged in.

#176 2010-07-09 15:51:39

0mark
Member
From: earth
Registered: 2010-06-09
Posts: 162
Website

Re: Show off your Dwm configuration!

dwm-screnshot-small.jpg

Heavily patched dwm (dwm-sprinkles), native bar + dwmd.


Ceterum autem censeo Systemdinem esse delendam

Offline

#177 2010-07-28 09:16:28

TheMuffinMan
Member
Registered: 2010-06-03
Posts: 18

Re: Show off your Dwm configuration!

Clean:
dvB9Ts.jpg

Dirty:
rK44ds.jpg

My first attempt at a Tiling WM.
- Heavily patched/customized dwm
- urxvt
- conky + dzen2
- ncmpcpp

Work in progress...

Offline

#178 2010-08-01 18:20:32

0mark
Member
From: earth
Registered: 2010-06-09
Posts: 162
Website

Re: Show off your Dwm configuration!

Nice. I really like the colors and font. May i ask you about the patch that did the line below the bar?

Oh, and what music player do you use?


Ceterum autem censeo Systemdinem esse delendam

Offline

#179 2010-08-01 19:37:15

TheMuffinMan
Member
Registered: 2010-06-03
Posts: 18

Re: Show off your Dwm configuration!

0mark wrote:

Nice. I really like the colors and font. May i ask you about the patch that did the line below the bar?

Oh, and what music player do you use?

The line below the bar was all me. It was a few lines of change, nothing major.

I use ncmpcpp/mpd for music.

Offline

#180 2010-08-01 22:28:33

saline
Member
Registered: 2010-02-20
Posts: 86

Re: Show off your Dwm configuration!

TheMuffinMan wrote:

Clean:
dvB9Ts.jpg

Dirty:
rK44ds.jpg

My first attempt at a Tiling WM.
- Heavily patched/customized dwm
- urxvt
- conky + dzen2
- ncmpcpp

Work in progress...

What is your gap size?

Offline

#181 2010-08-01 23:44:19

TheMuffinMan
Member
Registered: 2010-06-03
Posts: 18

Re: Show off your Dwm configuration!

saline wrote:

What is your gap size?

I don't think I changed it, so whatever the default is from the uselessgap patch.

Offline

#182 2010-08-03 04:38:29

beepressure
Member
Registered: 2009-10-29
Posts: 80

Re: Show off your Dwm configuration!

-- mod edit: thumbnails only as per http://wiki.archlinux.org/index.php/For … s_and_Code --

I really need to change this up. I've had the same setup for almost a year.

Offline

#183 2010-08-21 19:22:38

choogi
Member
Registered: 2009-10-06
Posts: 60

Re: Show off your Dwm configuration!

Do all of you who use the statuscolors patch also have to use pango?  I have statuscolors installed correctly but the '\x03' and '\x04' characters get printed out as text rather than changing the color of my status bar.  Anyone else figure this one out?

EDIT just figured it out as per this thread: https://bbs.archlinux.org/viewtopic.php?id=88119

Last edited by choogi (2010-08-23 02:57:09)

Offline

#184 2010-08-25 00:26:44

itisteve
Member
Registered: 2010-07-15
Posts: 24

Re: Show off your Dwm configuration!

Do any of you have a statuscolors patch that works with latest DWM?

Offline

#185 2010-08-25 00:38:31

choogi
Member
Registered: 2009-10-06
Posts: 60

Re: Show off your Dwm configuration!

The latest version of the statuscolors patch in suckless (5.7.2) actually does work with the latest version of DWM (5.8.2).  My dwm.c was patched correctly except for the last chunk in the unfocus() method, which I just fixed manually.

In this method:

void
unfocus(Client *c, Bool setfocus) {
        if(!c)
                return;
        grabbuttons(c, False);
        XSetWindowBorder(dpy, c->win, dc.norm[ColBorder]);
        if(setfocus)
                XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
}

change this line:

        XSetWindowBorder(dpy, c->win, dc.norm[ColBorder]);

to this:

        XSetWindowBorder(dpy, c->win, dc.colors[0][ColBorder]);

Offline

#186 2010-08-25 04:27:48

Ranguvar
Member
Registered: 2008-08-12
Posts: 2,544

Re: Show off your Dwm configuration!

TheMuffinMan wrote:

Clean:
dvB9Ts.jpg

Dirty:
rK44ds.jpg

My first attempt at a Tiling WM.
- Heavily patched/customized dwm
- urxvt
- conky + dzen2
- ncmpcpp

Work in progress...

Very nice.
Do you mind me asking, what font is that?
And slightly relevant, what is that ./.colors script I keep seeing everywhere?

Thanks!

Offline

#187 2010-08-29 11:58:22

bob127
Member
Registered: 2010-08-28
Posts: 2
Website

Re: Show off your Dwm configuration!

Most of the features listed below are patches from suckless.org applied, but there are also some changes I made. Disclaimer: this configuration is entirely made for my personal preferences so you might not like it at all smile

Taskbar
    - Added application icons (_NET_WM_ICON support), this adds an extra dependency on cairo (for image operations).
    - Shows all clients of the selected / active tags.
    - Click focuses clicked client.
    - Right-click sets monocle layout.
    - Middle-click kills the clicked client.
    - Divide application bars evenly among available space (awesomewm-like taskbar).
    - Colour urgent clients in the taskbar on active tags.
Tagbar:
    - Only show active tags.
    - Colour inactive tags with urgents clients.
Layouts:
    - Cycle layouts with Modkey + Space (next) and Modkey + Control + Space (previous).
    - Fullscreen layout (hides topbar and removes borders).
Tags:
    - Set initial layouts for some tags (monocle for web, fullscreen for movies).
    - One layout per tag.
Other:
    - Updated to DWM 5.9
    - Cycle through urgent clients with modkey + u
    - Move tiled clients around with the mouse (drag-move), awesomewm-like, NOTE: this is untested for multiple screens so is probably unstable.
    - Add some keybinds for multimedia keyboards (audio play / pause, mute, www, volume buttons, etc).

DWM screenie

You can check it out at:

hg clone http://codemadness.nl/downloads/projects/dwm/

and then checkout the branch:

hg checkout dwm-hiltjo

Up-to-date changelog: http://codemadness.nl/downloads/projects/dwm/CHANGELOG

Last edited by bob127 (2011-03-07 12:34:54)

Offline

#188 2010-08-31 01:38:46

Mr Pink57
Member
From: a van down by the river
Registered: 2009-05-30
Posts: 91

Re: Show off your Dwm configuration!

th_2010-08-30-011542_1280x768_scrot.png
dwm-sprinkles

Last edited by Mr Pink57 (2010-09-01 00:33:15)


Even a broken clock is right twice a day.

Diplomacy without force is like music without instruments.

Offline

#189 2010-09-05 15:09:58

kismet010
Member
Registered: 2009-09-02
Posts: 137

Re: Show off your Dwm configuration!

16895d5.png

I have a question for you guys...

Don't want to sound like a maniac in resource consumption.. but now I have the same bash scripts that I can show information in conky (except $moc that has a bug) for gmail, gcalendar, cpu+ram+temp, etc.. so, which of them is lighter, scripts or conky?

Offline

#190 2010-09-05 16:06:04

thayer
Fellow
From: Vancouver, BC
Registered: 2007-05-20
Posts: 1,560
Website

Re: Show off your Dwm configuration!

kismet010 wrote:

Don't want to sound like a maniac in resource consumption.. but now I have the same bash scripts that I can show information in conky (except $moc that has a bug) for gmail, gcalendar, cpu+ram+temp, etc.. so, which of them is lighter, scripts or conky?

That depends entirely upon how the stats are gotten in the bash script.  You can do some basic testing by simply running conky or the script and watching the output in htop. Memory footprint really shouldn't matter, but rather the continual CPU usage.  Conky spikes the CPU every x seconds depending on your configured interval. The bash script will do similar, but I've made some goofy stat scripts that utilized nearly 30% of my CPU ever x seconds. 

FWIW I used bash stats for a long time (and still do sometimes), but for the most part conky is optimized for CPU usage and is a helluva lot easier to configure without having to know system internals.

I have conky set to poll every 3 seconds and when it does it uses approximately 3-4% of the CPU; I couldn't really ask for more.

Last edited by thayer (2010-09-05 16:08:54)


thayer williams ~ cinderwick.ca

Offline

#191 2010-09-05 16:19:00

kismet010
Member
Registered: 2009-09-02
Posts: 137

Re: Show off your Dwm configuration!

thanks for the reply

Offline

#192 2010-09-06 07:32:54

0mark
Member
From: earth
Registered: 2010-06-09
Posts: 162
Website

Re: Show off your Dwm configuration!

I never used conky, but when i changed from bash to perl, it used more memory but less cpu cycles. Now it draws around 1%-3% percent on a 1.3ghz Pentium M.


Ceterum autem censeo Systemdinem esse delendam

Offline

#193 2010-09-06 07:57:32

kittykatt
Member
From: Missouri, USA
Registered: 2009-11-04
Posts: 260
Website

Re: Show off your Dwm configuration!

zowki wrote:

Welcome all dwm users! Post a screenshot of your desktop and optionally along with your configuration files.

Heres mine:

Clean desktop
thumb2.png

Anyone know where I can find that wallpaper?


- [ My Blog ] | [ AUR Packages ] | [ My deviantART ] | [ screenFetch ] | [ SilverIRC ] -

Offline

#194 2010-09-06 10:34:35

c00kiemon5ter
Member
From: Greece
Registered: 2010-06-01
Posts: 562
Website

Re: Show off your Dwm configuration!


.:[ git me! ] :.

Offline

#195 2010-09-06 10:48:04

kismet010
Member
Registered: 2009-09-02
Posts: 137

Re: Show off your Dwm configuration!

0mark wrote:

I never used conky, but when i changed from bash to perl, it used more memory but less cpu cycles. Now it draws around 1%-3% percent on a 1.3ghz Pentium M.

it's seems that's @thayer has reason because i recently did some test and built-in options from conky look optimized for using less memory/cpu.
about using perl.. i think when we say "bash script" we use more differents languages or utilities (awk, sed, grep..) and this uses more cpu that one library cached on memory.. but i'm really noob at those question and probably be wrong big_smile

Offline

#196 2010-09-07 20:07:20

Jimi
Member
From: Brooklyn, NY
Registered: 2009-09-25
Posts: 125
Website

Re: Show off your Dwm configuration!

Clean

Dirty

I'll edit in another later that shows my term workspace that has everything tiled.

Last edited by Jimi (2010-09-08 04:10:36)

Offline

#197 2010-09-29 16:11:58

na12
Member
From: /home/serbia
Registered: 2008-12-23
Posts: 752

Re: Show off your Dwm configuration!

2010-09-29-174240_1280x800_scrot.jpg

2010-09-29-180348_1280x800_scrot.jpg

Offline

#198 2010-10-01 14:02:34

na12
Member
From: /home/serbia
Registered: 2008-12-23
Posts: 752

Re: Show off your Dwm configuration!

TheMuffinMan wrote:

Clean:


Dirty:


My first attempt at a Tiling WM.
- Heavily patched/customized dwm
- urxvt
- conky + dzen2
- ncmpcpp

Work in progress...

how you get snap font to work,may I see your config.h,are you use any patch for that?

Offline

#199 2010-10-01 14:47:00

syre
Member
From: Denmark
Registered: 2009-08-04
Posts: 100

Re: Show off your Dwm configuration!

na12 wrote:
TheMuffinMan wrote:

Clean:


Dirty:


My first attempt at a Tiling WM.
- Heavily patched/customized dwm
- urxvt
- conky + dzen2
- ncmpcpp

Work in progress...

how you get snap font to work,may I see your config.h,are you use any patch for that?

xft fonts work with dwm-pango
http://aur.archlinux.org/packages.php?ID=33193

Last edited by syre (2010-10-01 14:47:59)

Offline

#200 2010-10-01 14:51:21

na12
Member
From: /home/serbia
Registered: 2008-12-23
Posts: 752

Re: Show off your Dwm configuration!

thanks

Offline

Board footer

Powered by FluxBB