i mean, there are too many changes to even comment it

This commit is contained in:
2026-05-03 22:56:12 +07:00
parent 5af4ca8015
commit ba803af701
39 changed files with 1538 additions and 972 deletions
+14 -12
View File
@@ -1,17 +1,19 @@
#pragma once
#ifndef __CONFIG_H_
#define __CONFIG_H_
#define ABSINTHE_CURSOR_MOD WLR_MODIFIER_ALT
#define ABSINTHE_CURSOR_MOVE_BUTTON BTN_LEFT
#define ABSINTHE_CURSOR_RESIZE_BUTTON BTN_RIGHT
#define CURSOR_MOD WLR_MODIFIER_ALT
#define CURSOR_MOVE_BUTTON BTN_LEFT
#define CURSOR_RESIZE_BUTTON BTN_RIGHT
#define ABSINTHE_TOPLEVEL_BORDER_WIDTH 1
#define TOPLEVEL_BW 1
static const float focused_border_color[4] = {0.64, 0.75, 0.55, 1.0};
static const float urgent_border_color[4] = {0.84, 0.47, 0.5, 1.0};
static const float unfocused_border_color[4] = {0.39, 0.42, 0.46, 1.0};
static const float focused_bc[4] = { 0.64, 0.75, 0.55, 1.0 };
static const float urgent_bc[4] = { 0.84, 0.47, 0.5, 1.0 };
static const float unfocused_bc[4] = { 0.39, 0.42, 0.46, 1.0 };
#define ABSINTHE_MAIN_STACK_SIZE 1;
#define ABSINTHE_MAIN_STACK_WIDTH 0.5;
#define MSTACK_SIZE 1
#define MSTACK_WIDTH 0.5
#define ABSINTHE_OUTPUT_GAP 0
#define ABSINTHE_LAYOUT_GAP 0
#define OUTPUT_GAP 0
#define LAYOUT_GAP 0
#endif