~kris/suckless

tabbed

deda1bb0 — Hiltjo Posthuma 3 years ago
Makefile improvements

* Respect system cflags, ldflags, packages can override them all with
  TABBED_{CFLAGS,LDFLAGS}. Remove -Wall and -Os and -s.
* Install README as documentation.
* dist: stream directly to a gzipped tarball.
* options: remove it.
* Add ".POSIX:"
* Remove config.mk
13f13ee5 — Hiltjo Posthuma 3 years ago
Makefile: simplify and remove hiding the build process
910e67db — Hiltjo Posthuma 3 years ago
Makefile: add xembed.1 in the dist target
config.h: mark keys as const
b372f9ce — Hiltjo Posthuma 3 years ago
bump version to 0.7
dabf6a25 — mikau 6 years ago
Fixed crash when window height was less or equal to bar height

When resizing, the embedded client is being resized to (height = wh - bh),
which is (<= 0) if (wh <= bh). This generates a BadValue Error leading to a
crash.  This patch fixes that by hiding the tab bar if the window height is too
small, and also sets a min_height WM hint to prevent that situation from
happening in the first place.
b5f9ec64 — Lucas Gabriel Vuotto 8 years ago
Add OpenBSD support to config.mk

Signed-off-by: Lucas Gabriel Vuotto <lgv@nanashi.co>
a327374a — Lucas Gabriel Vuotto 8 years ago
Embed dmenu in tabbed own window

Signed-off-by: Lucas Gabriel Vuotto <lgv@nanashi.co>
bbcdf154 — Alessandro Caputo 8 years ago
Fix minor inconsistency in man page
6dc3978e — Caleb Malchik 9 years ago
Fix movetab and focusurgent when there's no client

Accessing those would crash with a floating point exception.
05f583c5 — Quentin Rameau 9 years ago
Move tab selection keybinding from Ctrl-t to Ctrl-`
00c41432 — Christoph Lohmann 9 years ago
One killclient() is enough.
bc236142 — Christoph Lohmann 10 years ago
The forgotten half of the last patch.
95b46cd3 — Justin Keogh 10 years ago
add -k to close tabbed foreground client on WMDelete

Hello, this is useful when you want to use the same key binding that closes windows to close tabs. I got tired of loosing my tabbed/surf session when I hit my WM's close key. "Last tab" behavior still respects -c/-f.

Cheers
-J

From 829e95855f0fe78a368788a5e72231bd6456a8cf Mon Sep 17 00:00:00 2001
From: jakeogh <github.com@v6y.net>
Date: Mon, 21 Mar 2016 01:36:28 +0000
Subject: [PATCH] add -k to close foreground tabbed client on WM_DELETE_WINDOW

Signed-off-by: Christoph Lohmann <20h@r-36.net>
4ccaba49 — Christoph Lohmann 10 years ago
Import the arg.h from st with the fixed oob bug.
3c79bcb4 — Lucas Gabriel Vuotto 10 years ago
Added xft support

Based on xft tabbed patch from the wiki.

Signed-off-by: Lucas Gabriel Vuotto <l.vuotto92@gmail.com>
Signed-off-by: Christoph Lohmann <20h@r-36.net>
8920c1ba — Quentin Rameau 10 years ago
Add configuration option for title truncation string

Permit to use arbitrary string instead of "..." (ie "$") when truncating
client title.

Signed-off-by: Christoph Lohmann <20h@r-36.net>
eb0ff621 — Quentin Rameau 10 years ago
Remove h flag, put usage() in the default case

Signed-off-by: Christoph Lohmann <20h@r-36.net>
10585524 — Quentin Rameau 10 years ago
Arrange diagnostic messages

Fix error messages to use argv0 instead of fixed “tabbed”.
Break usage message into multiple lines.

Signed-off-by: Christoph Lohmann <20h@r-36.net>
735bed58 — Quentin Rameau 10 years ago
Style cleanup

Signed-off-by: Christoph Lohmann <20h@r-36.net>
Next