Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Howto: dwm configuration and installation

Share your HowTo, Documentation, Tips and Tricks. Not for support questions!.
Message
Author
User avatar
freek
Posts: 74
Joined: 2007-04-03 01:36
Location: Netherlands

Re: Howto: dwm configuration and installation

#41 Post by freek »

Hi Loomx,

1
'xev' gives 'PK_Enter' .. so I changed the Mod-Return to Mod-Enter in config.h and 'make clean install' .. no go "error XK_Enter not declared here" ..

2
This works ! .. didn't do the right thing last time I gues (sorry)

Statusbar hidden so I really like the Mod-Return to work to open a new xterm .. and I think it's weird it's not working .. just can't stand it .. ;)

thnx
there's no business like .. your own business ..

Loomx
Posts: 55
Joined: 2010-09-28 01:11

Re: Howto: dwm configuration and installation

#42 Post by Loomx »

Ok, that's progress :-)

Maybe try using the keysymbol in hex instead of the key name?

So instead of this:

Code: Select all

         { MODKEY,                   XK_Return,    spawn,          {.v = termcmd } },
try this: (check the keysym using xev first :-)

Code: Select all

         { MODKEY,                   0xff0d,    spawn,          {.v = termcmd } },

User avatar
freek
Posts: 74
Joined: 2007-04-03 01:36
Location: Netherlands

Re: Howto: dwm configuration and installation

#43 Post by freek »

Hi Loomx,

Problem solved .. it was Numlock .. numlock on and it doesn't work, numlock off and it works .. duh

silly me .. thnx
there's no business like .. your own business ..

Loomx
Posts: 55
Joined: 2010-09-28 01:11

Re: Howto: dwm configuration and installation

#44 Post by Loomx »

:-)

Glad you got it sorted.

Post Reply