185 lines
9.2 KiB
C
185 lines
9.2 KiB
C
/* ============================================================================
|
|
* DarkForge Linux — dwl Configuration
|
|
* ============================================================================
|
|
* Custom config for dwl (dynamic Wayland compositor).
|
|
* Keybindings use Super (Windows/Logo) key as the modifier.
|
|
*
|
|
* Key bindings:
|
|
* Super+Return = Launch terminal (foot)
|
|
* Super+P = Launch application menu (fuzzel)
|
|
* Super+B = Launch Firefox
|
|
* Super+G = Launch Steam
|
|
* Super+Shift+C = Close focused window
|
|
* Super+Shift+Q = Quit dwl
|
|
* Super+J/K = Focus next/prev window
|
|
* Super+H/L = Shrink/grow master area
|
|
* Super+T = Tiled layout
|
|
* Super+F = Floating layout
|
|
* Super+M = Monocle layout
|
|
* Super+E = Toggle fullscreen
|
|
* Super+1-9 = Switch to tag 1-9
|
|
* Super+Shift+1-9 = Move window to tag 1-9
|
|
* Audio keys = Volume up/down/mute (via pactl)
|
|
* ============================================================================ */
|
|
|
|
/* Taken from https://github.com/djpohly/dwl/issues/466 */
|
|
#define COLOR(hex) { ((hex >> 24) & 0xFF) / 255.0f, \
|
|
((hex >> 16) & 0xFF) / 255.0f, \
|
|
((hex >> 8) & 0xFF) / 255.0f, \
|
|
(hex & 0xFF) / 255.0f }
|
|
|
|
/* appearance */
|
|
static const int sloppyfocus = 1; /* focus follows mouse */
|
|
static const int bypass_surface_visibility = 0;
|
|
static const unsigned int borderpx = 2; /* border pixel — slightly thicker for visibility */
|
|
static const float rootcolor[] = COLOR(0x1a1a2eff); /* dark background */
|
|
static const float bordercolor[] = COLOR(0x444444ff); /* unfocused border */
|
|
static const float focuscolor[] = COLOR(0x7aa2f7ff); /* focused border — blue accent */
|
|
static const float urgentcolor[] = COLOR(0xf7768eff); /* urgent — red */
|
|
static const float fullscreen_bg[] = {0.0f, 0.0f, 0.0f, 1.0f};
|
|
|
|
/* tagging - TAGCOUNT must be no greater than 31 */
|
|
#define TAGCOUNT (9)
|
|
|
|
/* logging */
|
|
static int log_level = WLR_ERROR;
|
|
|
|
/* rules — assign apps to specific tags if desired */
|
|
static const Rule rules[] = {
|
|
/* app_id title tags mask isfloating monitor */
|
|
{ "firefox", NULL, 1 << 1, 0, -1 }, /* Firefox on tag 2 */
|
|
{ "Steam", NULL, 1 << 3, 0, -1 }, /* Steam on tag 4 */
|
|
{ "steam", NULL, 1 << 3, 0, -1 }, /* steam lowercase variant */
|
|
{ NULL, NULL, 0, 0, -1 }, /* default rule */
|
|
};
|
|
|
|
/* layout(s) */
|
|
static const Layout layouts[] = {
|
|
/* symbol arrange function */
|
|
{ "[]=", tile },
|
|
{ "><>", NULL }, /* floating */
|
|
{ "[M]", monocle },
|
|
};
|
|
|
|
/* monitors */
|
|
static const MonitorRule monrules[] = {
|
|
/* name mfact nmaster scale layout rotate/reflect x y */
|
|
{ NULL, 0.55f, 1, 1, &layouts[0], WL_OUTPUT_TRANSFORM_NORMAL, -1, -1 },
|
|
};
|
|
|
|
/* keyboard */
|
|
static const struct xkb_rule_names xkb_rules = {
|
|
/* XKB rules are set per-user via environment or runtime config */
|
|
.options = NULL,
|
|
};
|
|
|
|
static const int repeat_rate = 40; /* faster repeat for gaming/dev */
|
|
static const int repeat_delay = 300; /* shorter delay before repeat starts */
|
|
|
|
/* Trackpad — not used on desktop but kept for completeness */
|
|
static const int tap_to_click = 1;
|
|
static const int tap_and_drag = 1;
|
|
static const int drag_lock = 1;
|
|
static const int natural_scrolling = 0;
|
|
static const int disable_while_typing = 1;
|
|
static const int left_handed = 0;
|
|
static const int middle_button_emulation = 0;
|
|
static const enum libinput_config_scroll_method scroll_method = LIBINPUT_CONFIG_SCROLL_2FG;
|
|
static const enum libinput_config_click_method click_method = LIBINPUT_CONFIG_CLICK_METHOD_BUTTON_AREAS;
|
|
static const uint32_t send_events_mode = LIBINPUT_CONFIG_SEND_EVENTS_ENABLED;
|
|
static const enum libinput_config_accel_profile accel_profile = LIBINPUT_CONFIG_ACCEL_PROFILE_FLAT;
|
|
/* Flat acceleration profile — no mouse acceleration, critical for FPS games */
|
|
static const double accel_speed = 0.0;
|
|
static const enum libinput_config_tap_button_map button_map = LIBINPUT_CONFIG_TAP_MAP_LRM;
|
|
|
|
/* Use Super (Windows/Logo) key as the modifier — more natural than Alt */
|
|
#define MODKEY WLR_MODIFIER_LOGO
|
|
|
|
#define TAGKEYS(KEY,SKEY,TAG) \
|
|
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \
|
|
{ MODKEY|WLR_MODIFIER_CTRL, KEY, toggleview, {.ui = 1 << TAG} }, \
|
|
{ MODKEY|WLR_MODIFIER_SHIFT, SKEY, tag, {.ui = 1 << TAG} }, \
|
|
{ MODKEY|WLR_MODIFIER_CTRL|WLR_MODIFIER_SHIFT,SKEY,toggletag, {.ui = 1 << TAG} }
|
|
|
|
/* helper for spawning shell commands */
|
|
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
|
|
|
|
/* commands */
|
|
static const char *termcmd[] = { "foot", NULL };
|
|
static const char *menucmd[] = { "fuzzel", NULL };
|
|
static const char *browsercmd[] = { "firefox", NULL };
|
|
static const char *steamcmd[] = { "steam", NULL };
|
|
|
|
static const Key keys[] = {
|
|
/* modifier key function argument */
|
|
|
|
/* --- Application launchers --- */
|
|
{ MODKEY, XKB_KEY_Return, spawn, {.v = termcmd} },
|
|
{ MODKEY, XKB_KEY_p, spawn, {.v = menucmd} },
|
|
{ MODKEY, XKB_KEY_b, spawn, {.v = browsercmd} },
|
|
{ MODKEY, XKB_KEY_g, spawn, {.v = steamcmd} },
|
|
|
|
/* --- Audio controls (via PipeWire/pactl) --- */
|
|
{ 0, XKB_KEY_XF86AudioRaiseVolume, spawn, SHCMD("pactl set-sink-volume @DEFAULT_SINK@ +5%") },
|
|
{ 0, XKB_KEY_XF86AudioLowerVolume, spawn, SHCMD("pactl set-sink-volume @DEFAULT_SINK@ -5%") },
|
|
{ 0, XKB_KEY_XF86AudioMute, spawn, SHCMD("pactl set-sink-mute @DEFAULT_SINK@ toggle") },
|
|
|
|
/* --- Screenshot (grim + slurp) --- */
|
|
{ 0, XKB_KEY_Print, spawn, SHCMD("grim ~/Screenshots/$(date +%Y%m%d_%H%M%S).png") },
|
|
{ MODKEY, XKB_KEY_Print, spawn, SHCMD("grim -g \"$(slurp)\" ~/Screenshots/$(date +%Y%m%d_%H%M%S).png") },
|
|
|
|
/* --- Window management --- */
|
|
{ MODKEY, XKB_KEY_j, focusstack, {.i = +1} },
|
|
{ MODKEY, XKB_KEY_k, focusstack, {.i = -1} },
|
|
{ MODKEY, XKB_KEY_i, incnmaster, {.i = +1} },
|
|
{ MODKEY, XKB_KEY_d, incnmaster, {.i = -1} },
|
|
{ MODKEY, XKB_KEY_h, setmfact, {.f = -0.05f} },
|
|
{ MODKEY, XKB_KEY_l, setmfact, {.f = +0.05f} },
|
|
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_Return, zoom, {0} },
|
|
{ MODKEY, XKB_KEY_Tab, view, {0} },
|
|
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_C, killclient, {0} },
|
|
|
|
/* --- Layouts --- */
|
|
{ MODKEY, XKB_KEY_t, setlayout, {.v = &layouts[0]} },
|
|
{ MODKEY, XKB_KEY_f, setlayout, {.v = &layouts[1]} },
|
|
{ MODKEY, XKB_KEY_m, setlayout, {.v = &layouts[2]} },
|
|
{ MODKEY, XKB_KEY_space, setlayout, {0} },
|
|
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_space, togglefloating, {0} },
|
|
{ MODKEY, XKB_KEY_e, togglefullscreen, {0} },
|
|
|
|
/* --- Tags (workspaces) --- */
|
|
{ MODKEY, XKB_KEY_0, view, {.ui = ~0} },
|
|
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_parenright, tag, {.ui = ~0} },
|
|
|
|
/* --- Monitor management --- */
|
|
{ MODKEY, XKB_KEY_comma, focusmon, {.i = WLR_DIRECTION_LEFT} },
|
|
{ MODKEY, XKB_KEY_period, focusmon, {.i = WLR_DIRECTION_RIGHT} },
|
|
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_less, tagmon, {.i = WLR_DIRECTION_LEFT} },
|
|
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_greater, tagmon, {.i = WLR_DIRECTION_RIGHT} },
|
|
|
|
/* --- Tag switching --- */
|
|
TAGKEYS( XKB_KEY_1, XKB_KEY_exclam, 0),
|
|
TAGKEYS( XKB_KEY_2, XKB_KEY_at, 1),
|
|
TAGKEYS( XKB_KEY_3, XKB_KEY_numbersign, 2),
|
|
TAGKEYS( XKB_KEY_4, XKB_KEY_dollar, 3),
|
|
TAGKEYS( XKB_KEY_5, XKB_KEY_percent, 4),
|
|
TAGKEYS( XKB_KEY_6, XKB_KEY_asciicircum, 5),
|
|
TAGKEYS( XKB_KEY_7, XKB_KEY_ampersand, 6),
|
|
TAGKEYS( XKB_KEY_8, XKB_KEY_asterisk, 7),
|
|
TAGKEYS( XKB_KEY_9, XKB_KEY_parenleft, 8),
|
|
|
|
/* --- Session --- */
|
|
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_Q, quit, {0} },
|
|
|
|
/* VT switching (Ctrl+Alt+F1-F12) */
|
|
#define CHVT(n) { WLR_MODIFIER_CTRL|WLR_MODIFIER_ALT,XKB_KEY_XF86Switch_VT_##n, chvt, {.ui = (n)} }
|
|
CHVT(1), CHVT(2), CHVT(3), CHVT(4), CHVT(5), CHVT(6),
|
|
CHVT(7), CHVT(8), CHVT(9), CHVT(10), CHVT(11), CHVT(12),
|
|
};
|
|
|
|
static const Button buttons[] = {
|
|
{ MODKEY, BTN_LEFT, moveresize, {.ui = CurMove} },
|
|
{ MODKEY, BTN_MIDDLE, togglefloating, {0} },
|
|
{ MODKEY, BTN_RIGHT, moveresize, {.ui = CurResize} },
|
|
};
|