Re: [dev] st: selecting text affects both primary and clipbaord

2015-03-12 Thread Wander Nauta
> Do most numpad-less laptop keyboards even have Insert or a middle mouse > button? Macbooks have neither, I believe, and they're fairly popular. Cheers, Wander On Thu, Mar 12, 2015 at 4:53 PM, wrote: > * Alex Pilon 2015-03-12 15:17 >> Also, do >> most numpad-less laptop keyboards even have I

Re: [dev] [st] Strange behaviour with bitmap font

2015-02-24 Thread Wander Nauta
Hello, I (grudgingly) installed NVIDIA's official binary driver and the problem seems to have gone away. Apologies for the noise, and again, thanks for the pointers. Cheers, Wander On Tue, Feb 24, 2015 at 9:06 PM, Wander Nauta wrote: > Hello, > >> Is st really the only prog

Re: [dev] [st] Strange behaviour with bitmap font

2015-02-24 Thread Wander Nauta
fail in the graphics driver or hardware to me. Yeah, I agree. I'm going to try nvidia's binary blob driver and report back. Many thanks for the pointers so far. Cheers, Wander On Tue, Feb 24, 2015 at 8:56 PM, Markus Teich wrote: > Wander Nauta wrote: >> https://i.imgur.com/

[dev] [st] Strange behaviour with bitmap font

2015-02-24 Thread Wander Nauta
Hey all, I'm trying to use Terminus with st, but when I start it it immediately begins to show graphical glitches. The corruption then spreads to other instances of st, and also to instances of xterm, at which point st renames itself to 'broken'. The effect is rather cool to look at, but I'd rathe

Re: [dev] st: selecting text affects both primary and clipbaord

2015-02-19 Thread Wander Nauta
ttp://www.fastmail.com - IMAP accessible web-mail > > From 7552a9358aecd38006cdbcff61491ae8e713aa13 Mon Sep 17 00:00:00 2001 From: Wander Nauta Date: Fri, 20 Feb 2015 00:36:48 +0100 Subject: [PATCH] Don't clobber CLIPBOARD --- st.c | 7 --- 1 file changed, 7 deletions(-) diff --git a/st.c b

Re: [dev] [website] [proposal] Add suckless logo and minor style change

2015-02-02 Thread Wander Nauta
Hey FRIGN, Works a charm, thanks a lot! Cheers, Wander On Mon, Feb 2, 2015 at 3:25 PM, FRIGN wrote: > On Mon, 2 Feb 2015 15:08:29 +0100 > Wander Nauta wrote: > > Hey Wander, > >> It looks great! One very minor gripe: clicking the logo does not do >> anything

Re: [dev] [website] [proposal] Add suckless logo and minor style change

2015-02-02 Thread Wander Nauta
Hello, It looks great! One very minor gripe: clicking the logo does not do anything, which means I spent a few precious milliseconds trying to click something that does not want to be clicked. Maybe the logo can become a link to the homepage, like the suckless.org header text is. Cheers, Wander

Re: [dev] Found a bug in surf

2015-01-21 Thread Wander Nauta
Hi, Copying the current URL should be possible by pressing Ctrl-y, Ctrl-Shift-o should open the Web Inspector. I haven't been able to reproduce a crash on nl.wikipedia.org. Cheers, Wander On 01/21/2015 07:33 PM, Vampyrah Broadcasting wrote: > Hello everybody, > > I've found a bug in surf on Fr

Re: [dev] Tools that can format C code into dwm.c/st.c style

2015-01-02 Thread Wander Nauta
I've fiddled with it a bit, but it doesn't seem like there's a set of flags that will Just Work. Suckless style seems to be not to put spaces around binary operators (in most cases), which indent(1) disagrees with quite stubbornly. At the same time, indent(1) indents all comments by using tabs, wh

Re: [dev] Tools that can format C code into dwm.c/st.c style

2015-01-02 Thread Wander Nauta
Hello ACE, I would be surprised if GNU's indent program didn't have a flag to enforce that particular style. (It has more flags than your average military parade.) The indent program will do some alignment tricks as well if you tell it to, but you might like Tabular (https://github.com/godlygeek/

Re: [dev] K, a low-level procedural imperative programming language

2014-11-27 Thread Wander Nauta
What does your language have to offer? Is it safety? Expressiveness? Productivity? Ease of use? Do K programs run faster than C programs? Also, what is a 'for loop afterthot' (sic), why are the operators all weird, why do you use parentheses where every C-like language uses braces and why are inte

Re: [dev] why avoid install?

2014-11-18 Thread Wander Nauta
On 11/18/2014 09:16 PM, pancake wrote: > nope. it doesnt depends on anything, just libc. but its half a megabyte > of code As far as I know, the freedesktop implementation at least depends on (and bundles) a copy of glib. The BSD implementation probably doesn't. http://www.freedesktop.org/wiki/

Re: [dev] why avoid install?

2014-11-18 Thread Wander Nauta
On 11/18/2014 08:18 PM, pancake wrote: > Just read the src. Last time i saw it ... It was about 38kloc It also depends on glib, which is at the top of the sucks list.