David Dufberg Tøttrup | 18 May 2013 18:24
Picon

[tabbed] buttonpress on border bug

tabbed recieves buttonpress events on the border, with a negative x value. 
The consequence is that tabbed interprets this as a press on the leftmost 
item in the tab bar. Patch attached.

Sincerely,
David

hiro | 16 May 2013 13:09
Picon

gettext-stub

http://penma.de/code/gettext-stub/

Martin Miller | 16 May 2013 01:44

[dwm] Running dwm in KDE

When I'm on school computers, I run dwm on top of gnome by doing
something like: 
pkill -9 metacity && dwm
And then I have some rules set to move all the taskbars and things to
workspace 9. It works pretty well.

I've been given a laptop for work that's running Kubuntu. In the KDE
world is there something similar to metacity that I can kill so that I
can start dwm? 

--

-- 
Martin Miller
witsquash.com

matti christensen | 15 May 2013 10:28
Picon
Picon
Favicon

trying to get surf working on Raspberry pi

Hello

i've been building my Raspberry pi system for months now using
http://crux-arm.nu/SupportedDevices/Raspberrypi as base. crux has only
minimal stuff to build on and thus is the best system for me ( it is
really difficult to find minimalist enough system now-a-days ).

i've buit x.org, git, dwm, st and some other things - removed udev and
using devtmpfs, edited startup scripts for my taste ( only some rc.*
files, no directories, etc.).

i also built webkitgtk-2.0.1 with only webkitgtk1 ( and glib, cairo,
atk, gnutls, openssl, gstreamer, gtk2, ....) but surf only gives me
'segmentation' error - no idea why = nothing on syslog, etc...

/mc
---keep-IT-simple---

Thuban | 13 May 2013 18:17
Picon
Gravatar

upload via html?

Hi suckless users,
I was wondering what tool or method you would use to purpose simple file
upload on your server (via an html form as example)? CGI? PHP? Other?

Regards,
--

-- 
 ,--.
: /` )   Xavier Cartron
| `-'    
 \_
j. van den hoff | 11 May 2013 17:14

surf: typo in manpage

hopefully the right way to report this. applying the following patch the  
manpage formats as it should:

8<-----------------------------------
diff --git a/surf.1 b/surf.1
index 89276a0..4f66ca9 100644
--- a/surf.1
+++ b/surf.1
 <at>  <at>  -103,7 +103,7  <at>  <at>  Zooms page out
  .B Ctrl\-Shift\-q
  Resets Zoom
  .TP
-.B Ctrl\-f and Ctrl\-\\
+.B Ctrl\-f and Ctrl\-/
  Opens the search-bar.
  .TP
  .B Ctrl\-n
8<-----------------------------------

currently, the corresponding line renders as "Ctrl-f and Ctrl-" when  
calling `man surf'

j.

Johannes Hofmann | 9 May 2013 23:42
Picon
Picon

st slow startup

Hi,

as others also have noticed, Xft based st starts slow on some
systems. For me it helps if FcFontSort() is done lazily as shown
below.

Regards,
Johannes

diff --git a/st.c b/st.c
index 50090a4..425f669 100644
--- a/st.c
+++ b/st.c
 <at>  <at>  -2643,10 +2643,7  <at>  <at>  xloadfont(Font *f, FcPattern *pattern) {
 	if(!match)
 		return 1;

-	if(!(f->set = FcFontSort(0, match, FcTrue, 0, &result))) {
-		FcPatternDestroy(match);
-		return 1;
-	}
+	f->set = NULL;

 	if(!(f->match = XftFontOpenPattern(xw.dpy, match))) {
 		FcPatternDestroy(match);
 <at>  <at>  -2666,6 +2663,16  <at>  <at>  xloadfont(Font *f, FcPattern *pattern) {
 	return 0;
 }

+int
(Continue reading)

Petr Šabata | 7 May 2013 16:16
Picon
Favicon
Gravatar

[xssstate] Use correct format strings

Both idle and til_or_since are defined as unsigned longs.

---
 xssstate.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xssstate.c b/xssstate.c
index 57536b2..1eeca29 100644
--- a/xssstate.c
+++ b/xssstate.c
 <at>  <at>  -88,14 +88,14  <at>  <at>  main(int argc, char *argv[]) {
 			printf("0\n");
 			break;
 		case ScreenSaverOff:
-			printf("%ld\n", info->til_or_since);
+			printf("%lu\n", info->til_or_since);
 			break;
 		case ScreenSaverDisabled:
 			printf("-1\n");
 			break;
 		}
 	} else if (showidle) {
-		printf("%ld\n", info->idle);
+		printf("%lu\n", info->idle);
 	}

 
--

-- 
1.8.1.4

(Continue reading)

Christoph Lohmann | 6 May 2013 20:19

[tabbed] 0.5 release

Greetings comrades,

here's the 0.5 release of tabbed.

Features:
* -n flag for WM_CLASS
* title handling now works for umlauts too
* -r flag to specify the position in the commandline where to place the window
  id
* last selection of a tab has been reworked to be more correct
* avoid flashing of windows when they are reloaded too fast
* speed up rework of the internal data structured
	* tabbed should scale to the cloud now
* tabbed now has fullscreen support (F11)
* -c option will close tabbed after the last client is closed
* the -p option allows to specify the relative and absolute position of where
  to place new tabs in the tab list 
* a TODO file was added

Thanks to all the contributors!

http://tools.suckless.org/tabbed/

Sincerely,

Christoph Lohmann

Christoph Lohmann | 6 May 2013 20:13

[xssstate] 1.0 release

Greetings comrades,

I  am  glad to announce xssstate 1.0. Well, it was released too, but now
with official tarball.

http://tools.suckless.org/xssstate

Sincerely,

Christoph Lohmann

Maximilian Dietrich | 6 May 2013 16:15

packaging stuff

Greetings fellow comrades,
I would like to propose:
1. A tarball for xssstate. This would make packaging/porting it for
distributions easier and seems cleaner in general.

2. A new release of tabbed. I don't know if there are any big changes
planned for tabbed 0.5, but as there is no TODO file in the repo and the
last commit was some time ago, I assume this is not the case.
Currently you have to use the git version to run surf-open.sh and some
other useful changes have been made since the last release. A new
version would also make it possible for packagers to distribute
surf-open.sh together with surf.

Cheers,
Maximilian D.


Gmane