From 20a9d21e32996bf97559d0b748e46f86d787e210 Mon Sep 17 00:00:00 2001 From: BanceDev Date: Sat, 21 Feb 2026 11:58:05 -0500 Subject: changed personal config to brave --- src/config.h | 6 +----- src/tilite.c | 5 +---- 2 files changed, 2 insertions(+), 9 deletions(-) (limited to 'src') 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); } -- cgit v1.2.3-59-g8ed1b