Re: [dev] suckless.org down: 502 Bad Gateway

2018-09-06 Thread Pascal Wittmann
On 09/05/2018 06:04 PM, Pickfire wrote: > Silvan Jegen wrote: > >> Heyho >> >> The site is down and I get a "502 Bad Gateway" response from Nginx. >> >> ( http://www.thewebsiteisdown.com/ ) >> >> >> Cheers, >> >> Silvan > > Yeah, I also got that while I was doing live streaming for meetup just

Re: [dev] wego: a weather app for the terminal written in go

2015-01-14 Thread Pascal Wittmann
Hi Markus, On 01/14/2015 10:42 PM, Markus Teich wrote: > since I was tired of fetching lots of unneeded html and js and images just to > get a weather forecast, I wrote wego[0]. Comments welcome. Looks great! I will give it a try in the next few days. Pascal signature.asc Description: OpenPGP

Re: [dev] [dwm] running rdesktop in full-screen

2012-01-26 Thread Pascal Wittmann
On 01/26/2012 07:12 PM, Dennis Yurichev wrote: > I'm running rdesktop from terminal window with -f option meaning > full-screen. But when I try to escape from it by pressing > RCtrl-RAlt-Enter, rdesktop tries to change its window's geometry but > can't, and stays in full-screen mode. Is there somet

Re: [dev] dwm and Xwindow

2011-11-16 Thread Pascal Wittmann
On 11/16/2011 10:30 PM, Justin Pogue wrote: > On Wed, Nov 16, 2011 at 3:20 PM, Guilherme Lino wrote: >> hello >> Is there any way to dim the brightness or gamma of dwm unfocused windows?? >> cumps >> >> >> -- >> >> Guilherme Lino >> > > Not that I know of for *all* windows, but if I remember righ

Re: [dev] [dwm] Rotate the list of clients

2011-09-06 Thread Pascal Wittmann
On 09/06/2011 03:11 PM, Pascal Wittmann wrote: > On 09/06/2011 02:57 PM, Bastien Dejean wrote: >> Hi, >> >> Is there any patch to rotate the list of clients? >> E.g. 0 becomes 1, 1 becomes 2, ..., n - 1 becomes 0. >> (Same principle in the opposite directio

Re: [dev] [dwm] Rotate the list of clients

2011-09-06 Thread Pascal Wittmann
On 09/06/2011 02:57 PM, Bastien Dejean wrote: > Hi, > > Is there any patch to rotate the list of clients? > E.g. 0 becomes 1, 1 becomes 2, ..., n - 1 becomes 0. > (Same principle in the opposite direction.) > > Sayonara, Try this: http://dwm.suckless.org/patches/movestack signature.asc Descr

Re: [dev] slmenu - dmenu spinoff for the console

2011-09-01 Thread Pascal Wittmann
On 08/31/2011 02:09 PM, Rafa Garcia Gallego wrote: > Hi, > > I sometimes use sandy in a SSH session, so I wrote some code around > dmenu to have it work in the console. The resulting program takes > input from stdin, reopens the tty, prints the UI to stderr, gets your > input (again from stdin) an

Re: [dev] [dwm] scrot -s fails

2011-08-20 Thread Pascal Wittmann
On 08/20/2011 10:50 AM, Bastien Dejean wrote: > Steven Blatchford a écrit : > >> An IRC discussion on Jul 03, 2011 suggested to use 'import'. > > What is the equivalent in import to the -s argument in scrot? Just call 'import filename' and drag your mouse over the area. Only clicking will make a

Re: [dev] [dwm] non-ASCII characters in status bar?

2011-05-30 Thread Pascal Wittmann
On 05/30/2011 09:56 PM, Sir Cyrus wrote: > Is it possible to have the status bar in dwm show non-ASCII > characters? Not sure if this is an internal issue or a problem with > the default Terminus font, but it hasn't worked with any fonts I've > tried. > > A trivial example: > http://i.imgur.com/4S

Re: [dev] [PATCH] dmenu: Add commandline-options to determine Xinerama-screen

2011-03-12 Thread Pascal Wittmann
On 03/11/2011 09:11 PM, Axel Wagner wrote: > Moin, > > if no -m option is given to dmenu, it infers it's xinerama-screen from > the mouse-position. On heavily keyboard-driven window-managers, the > mouse-position differs heavily from where the attention is sometimes (I > personally hate mouse-foll

Re: [dev] [dwm] segfault with xrandr dual-head setup

2011-03-03 Thread Pascal Wittmann
On 01/29/2011 11:26 PM, Rob wrote: >> gdb gives me this output: >> >> Program terminated with signal 11, Segmentation fault. >> #0 0x0804b157 in arrangemon (m=0x9280688) at dwm.c:382 >> 382 strncpy(m->ltsymbol, m->lt[m->sellt]->symbol, sizeof >> m->ltsymbol); >> > > Can you give deta

Re: [dev] [dwm] segfault with xrandr dual-head setup

2011-01-29 Thread Pascal Wittmann
On 01/29/2011 09:26 PM, Rob wrote: >> Now I can work on VGA normal, but on LVDS I can only use the first >> workspace. If I try to switch (moving windows on workspaces works) dwm >> crashes and I see this segfault in dmesg: >> >> dwm[26627]: segfault at 0 ip 0804b157 sp bfbbe680 error 4 in >> dwm[8

[dev] [dwm] segfault with xrandr dual-head setup

2011-01-29 Thread Pascal Wittmann
s on workspaces works) dwm crashes and I see this segfault in dmesg: dwm[26627]: segfault at 0 ip 0804b157 sp bfbbe680 error 4 in dwm[8048000+a000] Any ideas? Kind regards, Pascal Wittmann

Re: [dev] three column layout / getting started writing patches

2010-08-12 Thread Pascal Wittmann
It's set in config.h: static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ On 08/12/2010 07:50 PM, Jaime Villarreal wrote: thanks again Valentin. After hacking a bit with the code I figured out that I can set the m->mfact variable to a different value in order t

Re: [dev] [dwm] spawn a floating window

2010-08-09 Thread Pascal Wittmann
On 08/08/2010 11:23 AM, Sean Whitton wrote: Hi, On Sat, Aug 07, 2010 at 10:01:47PM +0200, Pascal Wittmann wrote: I tried to write a function that spawns a window/client and makes it floating, but with no success. I looked a the spawn function, but I have no idea how to get/alter the isfloating

[dev] [dwm] spawn a floating window

2010-08-07 Thread Pascal Wittmann
Hi, I tried to write a function that spawns a window/client and makes it floating, but with no success. I looked a the spawn function, but I have no idea how to get/alter the isfloating value of the new client. Simply taking the selected one won't work. Example of use: You are reading a som

Re: [dev] [dwm] dwm for windows?

2010-07-08 Thread Pascal Wittmann
On 07/08/2010 03:09 PM, Yue Wu wrote: Hi, I'm using bblean[http://bb4win.sourceforge.net/bblean/] on windows, but I miss dwm, is there a port for it on windows? There is a dwm-port[1], but imo it is not very usable. [1] http://www.brain-dump.org/projects/dwm-win32/