aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar BanceDev 2026-02-21 11:58:05 -0500
committerGravatar BanceDev 2026-02-21 11:58:05 -0500
commit20a9d21e32996bf97559d0b748e46f86d787e210 (patch)
tree5dcc4485413425faa593803ad1e6de69f69c5572
parentMerge remote-tracking branch 'origin/main' into personalcfg (diff)
changed personal config to brave
Diffstat (limited to '')
-rw-r--r--src/config.h6
-rw-r--r--src/tilite.c5
2 files changed, 2 insertions, 9 deletions
diff --git a/src/config.h b/src/config.h
index 4b689e1..834d4c2 100644
--- a/src/config.h
+++ b/src/config.h
@@ -22,11 +22,7 @@
#define CFG_BINDS \
{MODKEY, XK_Return, 0, {.cmd = build_argv("alacritty")}, TYPE_CMD}, \
{MODKEY, XK_d, 0, {.cmd = build_argv("kitty -e oxicord")}, TYPE_CMD}, \
- {MODKEY, \
- XK_w, \
- 0, \
- {.cmd = build_argv("surf git.bance.dev")}, \
- TYPE_CMD}, \
+ {MODKEY, XK_w, 0, {.cmd = build_argv("brave")}, TYPE_CMD}, \
{MODKEY, XK_space, 0, {.cmd = build_argv("dmenu_run")}, TYPE_CMD}, \
{MODKEY, XK_equal, 0, {.cmd = build_argv("volup")}, TYPE_CMD}, \
{MODKEY, XK_minus, 0, {.cmd = build_argv("voldown")}, TYPE_CMD}, \
diff --git a/src/tilite.c b/src/tilite.c
index ad617fa..b958d8b 100644
--- a/src/tilite.c
+++ b/src/tilite.c
@@ -447,12 +447,10 @@ void focus_next(void) {
client_t *start = focused ? focused : workspaces[current_ws];
client_t *c = start;
- /* loop until we find a mapped client or return to start */
do
c = c->next ? c->next : workspaces[current_ws];
while (!c->mapped && c != start);
- /* if we return to start: */
if (!c->mapped)
return;
@@ -960,8 +958,7 @@ void hdl_map_req(XEvent *xev) {
c->fixed = True;
}
- if (should_float || global_floating)
- {
+ if (should_float || global_floating) {
c->floating = True;
bsp_remove(&bsp_roots[target_ws], c);
}
4:51 +0100'>2011-10-16lsx: return failure on errorGravatar Connor Lane Smith 1-2/+5 2011-10-16add xim supportGravatar Troels Henriksen 1-3/+15 2011-10-13limit lines to inputGravatar Connor Lane Smith 1-0/+1 2011-10-04input focus: fix for reparenting wmsGravatar Connor Lane Smith 1-1/+1 2011-09-30fix monitor select when no focusGravatar Connor Lane Smith 1-1/+1 2011-09-20tweak matchGravatar Connor Lane Smith 1-2/+2 2011-09-20update manpageGravatar Connor Lane Smith 1-9/+6 2011-09-19detect active monitor using input focusGravatar Connor Lane Smith 1-7/+12 2011-09-19add token matchingGravatar Connor Lane Smith 1-23/+34 2011-09-19change version to 'hg'Gravatar Connor Lane Smith 1-1/+1 2011-07-24dmenu_run: sh -cGravatar Connor Lane Smith 1-1/+1 2011-07-22fix loadfontGravatar Connor Lane Smith 1-12/+13 2011-07-19Added tag 4.4 for changeset 2b105eaae831Gravatar Connor Lane Smith 1-0/+1 2011-07-19add lsx.1 to distGravatar Connor Lane Smith 1-1/+1 2011-07-17tweaksGravatar Connor Lane Smith 2-2/+2 2011-07-14efficiency tweaksGravatar Connor Lane Smith 2-60/+44 2011-07-14fix extra warningGravatar Connor Lane Smith 1-1/+1 2011-07-06simpler vlineGravatar Connor Lane Smith 1-4/+2 2011-07-04rebind ^N ^PGravatar Connor Lane Smith 2-3/+3 2011-06-25include limits.hGravatar Connor Lane Smith 1-0/+1 2011-06-23make clean lsxGravatar Connor Lane Smith 1-1/+1 2011-06-23lsx: check snprintfGravatar Connor Lane Smith 1-4/+3 2011-06-18update draw.cGravatar Connor Lane Smith 2-14/+14 2011-06-18simpler lsxGravatar Connor Lane Smith 3-11/+6 2011-06-13new dmenu_runGravatar Connor Lane Smith 5-26/+15