~kris/suckless

tabbed

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>
46887ac5 — Quentin Rameau 10 years ago
Fix install paths and default build flag

Ensure that paths are quoted.
Compile with -Os by default.

Signed-off-by: Christoph Lohmann <20h@r-36.net>
df8261e8 — Christoph Lohmann 10 years ago
Bumping up the year.

Thanks for the bug report, FRIGN!
7f6085d4 — Christoph Lohmann 10 years ago
Bump year.
9d4b71ec — Jonas Rabenstein 11 years ago
autofocus urgent tabs

When tabbed becomes urgent because one of it tabs becomes urgent, it
may be desireable to automatically focus that tab. As a notification may
be lost, if another notification comes in before you focused tabbed, the
switch is only done, if tabbed is not urgent already.
Moreover, it may be anoying, if you just type into one tab, another tab
gets urgent -therfore focused- and you type into the other tab, you may
switch between autofocus and nofocus using Ctrl-Shift-u.
Maybe it would also be usefull, if there would be an commandline
parameter to toggle that option, but as -u is already used for
urgent-tab-color, i did not implement that.

Signed-off-by: Jonas Rabenstein <jonas.rabenstein@studium.uni-erlangen.de>
Signed-off-by: Christoph Lohmann <20h@r-36.net>
Next