diff options
Diffstat (limited to '.repos')
-rw-r--r-- | .repos/dwm/config.h | 4 | ||||
-rw-r--r-- | .repos/slock/config.h | 33 | ||||
-rw-r--r-- | .repos/slock/slock.c | 4 |
3 files changed, 18 insertions, 23 deletions
diff --git a/.repos/dwm/config.h b/.repos/dwm/config.h index 26e3439..dade1c5 100644 --- a/.repos/dwm/config.h +++ b/.repos/dwm/config.h @@ -3,7 +3,7 @@ /* appearance */ static const unsigned int borderpx = 1; /* border pixel of windows */ static const unsigned int snap = 32; /* snap pixel */ -static const int showbar = 1; /* 0 means no bar */ +static const int showbar = 0; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { "Iosevka Term:pixelsize=14:antialias=true:autohint=true" }; static const char dmenufont[] = "Iosevka Term:pixelsize=14:antialias=true:autohint=true"; @@ -161,6 +161,7 @@ static Key keys[] = { { MODKEY|ControlMask|ShiftMask, XK_q, quit, {0} }, { MODKEY, XK_e, spawn, SHCMD("emoji") }, + { MODKEY, XK_n, spawn, SHCMD("firefox") }, { 0, XF86XK_AudioMute, spawn, SHCMD("amixer set Master toggle") }, { 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("amixer set Master 5%+") }, @@ -168,6 +169,7 @@ static Key keys[] = { { 0, XF86XK_AudioMicMute, spawn, SHCMD("amixer set Capture toggle") }, { 0, XF86XK_MonBrightnessDown, spawn, SHCMD("brightnessctl s 20-") }, { 0, XF86XK_MonBrightnessUp, spawn, SHCMD("brightnessctl s 20+") }, + { 0, XK_Cancel, spawn, SHCMD("dnd") }, { 0, XF86XK_WLAN, spawn, SHCMD("wifi off") }, //{ 0, XF86XK_WakeUp, spawn, SHCMD("scrot") }, { 0, XF86XK_Display, spawn, SHCMD("screen") }, diff --git a/.repos/slock/config.h b/.repos/slock/config.h index 66a2d9e..093582e 100644 --- a/.repos/slock/config.h +++ b/.repos/slock/config.h @@ -3,11 +3,11 @@ static const char *user = "melvin"; static const char *group = "melvin"; static const char *colorname[NUMCOLS] = { - [BACKGROUND] = "black", /* after initialization */ - [INIT] = "#2d2d2d", /* after initialization */ - [INPUT] = "#2d2d2d", /* during input */ - [FAILED] = "#cc3333", /* wrong password */ - [PAM] = "#9400D3", /* waiting for PAM */ + [BACKGROUND] = "black", /* after initialization */ + [INIT] = "black", /* after initialization */ + [INPUT] = "black", /* during input */ + [FAILED] = "red", /* wrong password */ + [PAM] = "green", /* waiting for PAM */ }; /* treat a cleared input like a wrong password (color) */ @@ -17,25 +17,16 @@ static const int failonclear = 1; static const char* pam_service = "login"; /* insert grid pattern with scale 1:1, the size can be changed with logosize */ -static const int logosize = 75; -static const int logow = 10; /* grid width and height for right center alignment*/ -static const int logoh = 5; +static const int logosize = 50; +static const int logow = 2; /* grid width and height for right center alignment*/ +static const int logoh = 2; -static XRectangle rectangles[11] = { +static XRectangle rectangles[4] = { /* x y w h */ - { 0, 0, 1, 5 }, + { 0, 0, 1, 1 }, + { 0, 1, 1, 1 }, + { 1, 0, 1, 1 }, { 1, 1, 1, 1 }, - { 2, 2, 1, 1 }, - { 3, 1, 1, 1 }, - { 4, 0, 1, 5 }, - - { 6, 0, 1, 5 }, - { 7, 0, 2, 1 }, - { 7, 2, 2, 1 }, - { 7, 4, 2, 1 }, - { 9, 1, 1, 1 }, - { 9, 3, 1, 1 }, - }; /* time in seconds before the monitor shuts down */ diff --git a/.repos/slock/slock.c b/.repos/slock/slock.c index 4bf2b36..8f09c7e 100644 --- a/.repos/slock/slock.c +++ b/.repos/slock/slock.c @@ -17,6 +17,7 @@ #include <sys/types.h> #include <X11/extensions/Xrandr.h> #include <X11/extensions/dpms.h> +#include <X11/XF86keysym.h> #ifdef XINERAMA #include <X11/extensions/Xinerama.h> #endif @@ -228,7 +229,8 @@ readpw(Display *dpy, struct xrandr *rr, struct lock **locks, int nscreens, IsPrivateKeypadKey(ksym)) continue; switch (ksym) { - case XK_Return: + //case XK_Return: + case XF86XK_Favorites: passwd[len] = '\0'; errno = 0; retval = pam_start(pam_service, hash, &pamc, &pamh); |