From ebfed8245c5aa5e78b45c228f1bd4dfebafe09ad Mon Sep 17 00:00:00 2001 From: Zedhugh Chen Date: Sun, 24 Aug 2025 21:49:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=80=80=E5=87=BA=E5=92=8C?= =?UTF-8?q?=E9=87=8D=E5=90=AF=E7=9A=84=E5=BF=AB=E6=8D=B7=E9=94=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config.h b/src/config.h index b520240..b9df131 100644 --- a/src/config.h +++ b/src/config.h @@ -88,8 +88,8 @@ const char launcher[] = "rofi -show combi -modes window,drun,run,ssh,combi,windowcd"; const keybinding_t keys[] = { {SUPER, XK_p, spawn, {.ptr = launcher}}, - {SUPER, XK_q, quit, {.b = false}}, - {SUPER, XK_r, quit, {.b = true}}, + {SUPER | SHIFT, XK_q, quit, {.b = false}}, + {SUPER | CTRL, XK_r, quit, {.b = true}}, {SUPER, XK_1, select_tag, {.ui = 0}}, {SUPER, XK_2, select_tag, {.ui = 1}}, {SUPER, XK_3, select_tag, {.ui = 2}}, @@ -98,7 +98,7 @@ const keybinding_t keys[] = { {SUPER, XK_6, select_tag, {.ui = 5}}, {SUPER, XK_7, select_tag, {.ui = 6}}, {SUPER, XK_8, select_tag, {.ui = 7}}, - {SUPER, XK_9, select_tag, { .ui = 8 }}, + {SUPER, XK_9, select_tag, {.ui = 8}}, }; const char *const bar_bg = "#222222";