1
0
mirror of https://github.com/tiyn/slock.git synced 2025-04-19 16:17:46 +02:00

Compare commits

..

3 Commits

Author SHA1 Message Date
TiynGER
62f56acf86 updated logo size 2023-10-26 17:07:07 +02:00
b8f4624e30 changed logo to tiyn logo 2023-10-26 17:05:05 +02:00
744232078f changed colors 2023-10-26 14:45:56 +02:00

View File

@ -3,10 +3,10 @@ static const char *user = "user";
static const char *group = "nobody"; static const char *group = "nobody";
static const char *colorname[NUMCOLS] = { static const char *colorname[NUMCOLS] = {
[INIT] = "#000000", /* after initialization */ [INIT] = "#2d2d2d", /* after initialization */
[INPUT] = "#0000ff", /* during input */ [INPUT] = "#005577", /* during input */
[FAILED] = "#ff0000", /* wrong password */ [FAILED] = "#cc3333", /* wrong password */
[CAPS] = "#ffff00", /* CapsLock on */ [CAPS] = "#ff0000", /* CapsLock on */
}; };
/* treat a cleared input like a wrong password (color) */ /* treat a cleared input like a wrong password (color) */
@ -15,22 +15,24 @@ static const int failonclear = 1;
/* Background image path, should be available to the user above */ /* Background image path, should be available to the user above */
static const char* background_image = "/home/user/.local/share/lock"; static const char* background_image = "/home/user/.local/share/lock";
/* insert grid pattern with scale 1:1, the size can be changed with logosize */ /* insert grid pattern with scale 1:1, the size can be changed with logosize */
static const int logosize = 75; static const int logosize = 40;
static const int logow = 12; /* grid width and height for right center alignment*/ static const int logow = 10; /* grid width and height for right center alignment*/
static const int logoh = 6; static const int logoh = 15;
static XRectangle rectangles[9] = { static XRectangle rectangles[12] = {
/* x y w h */ /* x y w h */
{ 0, 3, 1, 3 }, { 0, 0, 1, 3 },
{ 1, 3, 2, 1 }, { 0, 7, 4, 2 },
{ 0, 5, 8, 1 }, { 1, 0, 1, 4 },
{ 3, 0, 1, 5 }, { 2, 2, 1, 3 },
{ 5, 3, 1, 2 }, { 3, 3, 1, 3 },
{ 7, 3, 1, 2 }, { 4, 0, 2, 2 },
{ 8, 3, 4, 1 }, { 4, 4, 2, 11 },
{ 9, 4, 1, 2 }, { 6, 3, 1, 3 },
{ 11, 4, 1, 2 }, { 6, 7, 4, 2 },
{ 7, 2, 1, 3 },
{ 8, 0, 1, 4 },
{ 9, 0, 1, 3 },
}; };
/* allow control key to trigger fail on clear */ /* allow control key to trigger fail on clear */