You are not logged in.

#376 2011-03-30 15:05:14

rakka
Member
Registered: 2009-01-05
Posts: 96

Re: March 2011 Screenshots

dipilibupap wrote:

Yeah j3concepts.. though i found this one on wallbase.. loving the colours! Thanks alot to all those guys! @daisuke would be cool to see you pop in ##customize wink one day if you got the time !

@rakka  what do you mean what am i doing with the launcher text? launching scrot tongue

Thanks daisuke and dipilibupap. Also, just an odd way of asking about the font choice. smile


Arch x86_64 - GitHub

Offline

#377 2011-03-30 16:16:01

bencahill
Member
Registered: 2011-03-20
Posts: 40

Re: March 2011 Screenshots

kveras wrote:

Xmonad, busy.

How do you have the mini-pictures (icons) at the bottom? Is it a font?

Thanks.

Nevermind. Missed the "Configs" link. ;-)

Last edited by bencahill (2011-03-30 16:26:42)

Offline

#378 2011-03-30 16:57:35

dipilibupap
Member
Registered: 2011-02-05
Posts: 47

Re: March 2011 Screenshots

rakka, i just changed the fonts now tongue .. i didnt really look into changing the default font.


http://dotshare.it    >>    #dotshare@freenode

Offline

#379 2011-03-30 20:02:39

TomMan
Member
From: UK
Registered: 2010-11-07
Posts: 16
Website

Re: March 2011 Screenshots

Where did you get that desktop background?


How should I know if it works? That's what beta testers are for. I only coded it.
-- Attributed to Linus Torvalds, somewhere in a posting

Offline

#380 2011-03-31 13:03:08

ivoarch
Member
Registered: 2011-03-31
Posts: 436

Re: March 2011 Screenshots

Here  MY dwm
 
201103302357051280x1024.th.png

Uploaded with ImageShack.us
201103302348361280x1024.th.png

Uploaded with ImageShack.us


Running programs:figlet,urxvt,ncmpcpp,metasploit
+Patches
Bottom stack  http://dwm.suckless.org/patches/bottom_stack
Movestack      http://dwm.suckless.org/patches/movestack

config.h

/* See LICENSE file for copyright and license details. */

/* appearance */
static const char font[]            = "-*-terminus-medium-r-*-*-16-*-*-*-*-*-*-*";
static const char normbordercolor[] = "#222020";
static const char normbgcolor[]     = "#222020";
static const char normfgcolor[]     = "#9CC76D";
static const char selbordercolor[]  = "#9CC76D";
static const char selbgcolor[]      = "#222020";
static const char selfgcolor[]      = "#B84E46";
static const unsigned int borderpx  = 1;        /* border pixel of windows */ 
static const unsigned int gappx     = 6;        /* gap pixel between windows */
static const unsigned int snap      = 32;       /* snap pixel */
static const Bool showbar           = True;     /* False means no bar */
static const Bool topbar            = True;     /* False means bottom bar */
 
/* tagging */
static const char *tags[] = { "1", "2", "3", "4" };

static const Rule rules[] = {
    /* class      instance    title       tags mask     isfloating   monitor */
    { "Gimp",     NULL,       NULL,       0,            True,        -1 },
    { "jumanji",  NULL,       NULL,       2 << 1,       False,       -1 }, 
};

/* layout(s) */
static const float mfact      = 0.55; /* factor of master area size [0.05..0.95] */
static const Bool resizehints = True; /* True means respect size hints in tiled  
 
 resizals */
  

#include "bstack.c"
#include "bstackhoriz.c"
static const Layout layouts[] = {
    /* symbol     arrange function */
    { "[]=",      tile },    /* first entry is default */
    { "><>",      NULL },    /* no layout function means floating behavior */ 
        { "[M]",      monocle },         
    { "TTT",      bstack },
    { "===",      bstackhoriz },
};

/* 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 const char *webcmd[] = {"jumanji", NULL };  
static const char *mancmd[] = {"urxvt", "-e", "ranger", NULL }; 
static const char *playcmd[] = {"urxvt", "-e", "ncmpcpp", NULL };
static const char *rebootcmd[] = {"sudo", "shutdown", "-r", "now", NULL }; 
static const char *quitcmd[] = {"sudo", "shutdown", "-h", "now", NULL }; 


#include "movestack.c"
static Key keys[] = {
    /* modifier                     key        function        argument */
    { MODKEY,                       XK_p,      spawn,          {.v = dmenucmd } },
    { MODKEY,                  XK_o, spawn,                         {.v = termcmd } }, 
        { MODKEY,        XK_i,       spawn,               {.v = webcmd } },  
        { MODKEY,             XK_u, spawn,          {.v = mancmd } }, 
        { MODKEY,             XK_y, spawn,          {.v = playcmd } },
        { MODKEY|ShiftMask,        XK_r,       spawn,       {.v = rebootcmd } }, 
        { MODKEY|ShiftMask,             XK_q, spawn,          {.v = quitcmd } },
    { MODKEY,                       XK_b,      togglebar,      {0} },
    { MODKEY,                       XK_h,      focusstack,     {.i = +1 } },
    { MODKEY,                       XK_g,      focusstack,     {.i = -1 } },
    { MODKEY,                       XK_h,      setmfact,       {.f = -0.05} },
    { MODKEY,                       XK_l,      setmfact,       {.f = +0.05} },
    { MODKEY|ShiftMask,             XK_j,      movestack,      {.i = +1 } },
    { MODKEY|ShiftMask,             XK_k,      movestack,      {.i = -1 } },
    { 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_a,      setlayout,      {.v = &layouts[3]} }, 
        { MODKEY,                       XK_s,      setlayout,      {.v = &layouts[4]} },
    { MODKEY,                       XK_space,  setlayout,      {0} },
    { MODKEY|ShiftMask,             XK_space,  togglefloating, {0} },
    { MODKEY,                       XK_0,      view,           {.ui = ~0 } },
    { MODKEY|ShiftMask,             XK_0,      tag,            {.ui = ~0 } },
    { MODKEY,                       XK_comma,  focusmon,       {.i = -1 } },
    { MODKEY,                       XK_period, focusmon,       {.i = +1 } },
    { MODKEY|ShiftMask,             XK_comma,  tagmon,         {.i = -1 } },
    { MODKEY|ShiftMask,             XK_period, tagmon,         {.i = +1 } },
    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 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.c

/* variables */
static const char broken[] = "broken";
static char stext[256];
static int screen;
static int sw, sh;           /* X display screen geometry width, height */
static int bh, blw = 0;      /* bar geometry */
static int (*xerrorxlib)(Display *, XErrorEvent *);
static unsigned int numlockmask = 0;
static void (*handler[LASTEvent]) (XEvent *) = {
    [ButtonPress] = buttonpress,
    [ClientMessage] = clientmessage,
    [ConfigureRequest] = configurerequest,
    [ConfigureNotify] = configurenotify,
    [DestroyNotify] = destroynotify,
    [Expose] = expose,
    [FocusIn] = focusin,
    [KeyPress] = keypress,
    [MappingNotify] = mappingnotify,
    [MapRequest] = maprequest,
    [PropertyNotify] = propertynotify,
    [UnmapNotify] = unmapnotify
};

I love GnuEmacs, GnuScreen, ratpoison, and conkeror.
Github )||( Weblog

Offline

#381 2011-03-31 14:34:43

Kosava
Member
From: Serbia
Registered: 2008-08-19
Posts: 127

Re: March 2011 Screenshots

TomMan wrote:

Where did you get that desktop background?

Here is site where i downloaded this abstract wallapaper http://www.crazythemes.com/

Offline

#382 2011-03-31 14:39:51

virajecr
Member
Registered: 2010-11-30
Posts: 1

Re: March 2011 Screenshots

Thanks for the link.

Offline

#383 2011-03-31 18:30:14

jagoterr
Member
Registered: 2011-01-23
Posts: 1

Re: March 2011 Screenshots

Upgraded my home laptop to gnome3. And...
$ sudo pacman -Rnsc *gnome* :)

So, here my new setup:

tODF6eQ

* icewm 1.3.7 (theme: DustIce, modified to be grayscale)
* dmenu
* gtk2 theme: equinox
* conky: I think my config has nothing interesting :)
* wallpaper is a github's octocat :)

Offline

#384 2011-03-31 18:56:09

sam87
Member
From: down the rabbit hole
Registered: 2009-09-26
Posts: 141

Re: March 2011 Screenshots

vODIwcA
wmfs on my eeepc with my confs from jasonwryan's bitbucket...PEW PEW!!


what i cannot build, i do not understand

Offline

#385 2011-03-31 18:56:15

I'mGeorge
Member
Registered: 2011-03-23
Posts: 150

Re: March 2011 Screenshots

Old Town Desktop

-- mod edit: read the rules and only post thumbnails https://bbs.archlinux.org/viewtopic.php?id=61754  [jwr] --

Last edited by I'mGeorge (2011-03-31 18:58:49)


I've first installed Arch in March

Offline

#386 2011-03-31 19:24:07

I'mGeorge
Member
Registered: 2011-03-23
Posts: 150

Re: March 2011 Screenshots

sorry about that. I've did used a thumbnail, but maybe I've mixed the thumb's address with the full resolution image . Anyway here's the desktop link http://img829.imageshack.us/img829/8343 … hotcro.png


I've first installed Arch in March

Offline

#387 2011-04-01 02:45:10

Mustard
Member
From: Noblesville, Indiana
Registered: 2010-03-02
Posts: 39
Website

Re: March 2011 Screenshots

Here I am being a total nerd and showing of my quite ordinary desktop screenshot to my fiance....despite this she still loves me. smile

201104011133501440x900s.th.png

Uploaded with ImageShack.us

Offline

#388 2011-04-03 19:26:03

kost147
Member
From: Bulgaria
Registered: 2010-12-23
Posts: 18

Re: March 2011 Screenshots

http://img84.imageshack.us/i/cran3.png/
http://img155.imageshack.us/i/cran2.png/
Only wallpaper is very special, its about 99 anniversary of my football team.

Last edited by kost147 (2011-04-03 19:28:29)

Offline

#389 2011-04-03 19:34:35

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,424
Website

Re: March 2011 Screenshots

I think you want this thread https://bbs.archlinux.org/viewtopic.php?id=116038 (the April one...)


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

Board footer

Powered by FluxBB