From 57c1c11a7a43109ae887af7c0237e5391d897d58 Mon Sep 17 00:00:00 2001 From: WanderingPenwing Date: Thu, 1 Aug 2024 03:39:44 +0200 Subject: [PATCH] removed screenlock --- config.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/config.h b/config.h index e786bec..eb11465 100644 --- a/config.h +++ b/config.h @@ -64,7 +64,6 @@ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() static const char *dmenucmd[] = { "/home/penwing/nixos/scripts/dmenu_launcher.sh", NULL }; static const char *termcmd[] = { "kodama", NULL }; static const char *chromium[] = { "chromium", "--wm-window-animations-disabled", "--animation-duration-scale=0", NULL }; -static const char *screenlock[] = { "betterlockscreen", "-l", NULL }; static const Key keys[] = { @@ -72,7 +71,6 @@ static const Key keys[] = { { MODKEY, XK_d, spawn, {.v = dmenucmd } }, { MODKEY, XK_Return, spawn, {.v = termcmd } }, { MODKEY, XK_i, spawn, {.v = chromium } }, - { MODKEY, XK_twosuperior, spawn, {.v = screenlock } }, { MODKEY, XK_space, setlayout, {0} }, { MODKEY, XK_f, togglefullscreen, {0} }, { MODKEY, XK_less, focusstack, {.i = -1 } },