tabbed-noxz

[fork] suckless tabbed - personal fork
git clone https://noxz.tech/git/tabbed-noxz.git
tabbed-noxz

commit: f49feeb57b6fa698a81408d5e48d851d28c9e6bf
parent: 4592bfb4ac1ba80c5b4fe749d561653aad68a3c8
author: Chris Noxz <chris@noxz.tech>
date:   Sat, 19 Oct 2024 16:09:56 +0200
change defaults
MMakefile2+-
Mconfig.def.h2+-
Mtabbed.c2+-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
@@ -4,7 +4,7 @@ NAME = tabbed
 VERSION = 0.8
 
 # paths
-PREFIX = /usr/local
+PREFIX = ${HOME}/.local
 MANPREFIX = ${PREFIX}/share/man
 DOCPREFIX = ${PREFIX}/share/doc/${NAME}
 
diff --git a/config.def.h b/config.def.h
@@ -14,7 +14,7 @@ static char* before       = "<";
 static char* after        = ">";
 static char* titletrim    = "...";
 static int tabwidth       = 100;
-static int focusnew       = 1;
+static int focusnew       = 0;
 static int urgentswitch   = 0;
 
 /*
diff --git a/tabbed.c b/tabbed.c
@@ -829,7 +829,7 @@ manage(Window w)
 		nclients++;
 		clients = erealloc(clients, sizeof(Client *) * nclients);
 
-		if(npisrelative) {
+		if (npisrelative) {
 			nextpos = sel + newposition;
 		} else {
 			if (newposition < 0)