Moved to new phase

This commit is contained in:
2026-03-20 09:45:20 +01:00
parent 31e2574e18
commit d6ea38db14
9 changed files with 521 additions and 19 deletions

184
configs/dwl/config.h Normal file
View File

@@ -0,0 +1,184 @@
/* ============================================================================
* 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} },
};

View File

@@ -26,10 +26,11 @@ FONT="ter-v18n"
# Scripts are started in listed order at boot, stopped in reverse at shutdown.
DAEMONS=(
eudev # Device manager — must be first for hardware detection
seatd # Seat manager — gives user access to GPU, input, sound devices
syslog # System logging
dbus # D-Bus message bus — needed by polkit, PipeWire
dhcpcd # DHCP client for ethernet
pipewire # Audio server (replaces PulseAudio)
pipewire # Audio server — prepares XDG_RUNTIME_DIR (user session starts audio)
)
# --- Kernel modules to load at boot ----------------------------------------

34
configs/rc.d/seatd Executable file
View File

@@ -0,0 +1,34 @@
#!/bin/bash
# ============================================================================
# DarkForge Linux — seatd daemon
# ============================================================================
# Seat manager — provides access to GPU, input devices, and sound hardware
# for unprivileged user sessions. Required by wlroots/dwl for Wayland.
# The autologin user must be in the 'video' group.
# ============================================================================
DAEMON="/usr/bin/seatd"
case "$1" in
start)
if [ -x "$DAEMON" ]; then
${DAEMON} -g video &
echo " seatd started (group: video)"
else
echo " seatd not found at ${DAEMON}"
fi
;;
stop)
killall seatd 2>/dev/null
echo " seatd stopped"
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
;;
esac

View File

@@ -1,27 +1,28 @@
# ============================================================================
# DarkForge Linux — User Shell Profile (~/.zprofile)
# ============================================================================
# Sourced on login to zsh. Auto-starts PipeWire and dwl on tty1.
# This file is installed to /home/danny/.zprofile during system installation.
# Sourced on login to zsh. Auto-starts the full desktop session on tty1:
# D-Bus user session → PipeWire audio → polkit agent → dwl compositor
# ============================================================================
# --- Environment variables for Wayland + NVIDIA ----------------------------
# --- XDG directories --------------------------------------------------------
export XDG_SESSION_TYPE=wayland
export XDG_RUNTIME_DIR="/run/user/$(id -u)"
export XDG_CONFIG_HOME="${HOME}/.config"
export XDG_CACHE_HOME="${HOME}/.cache"
export XDG_DATA_HOME="${HOME}/.local/share"
export XDG_STATE_HOME="${HOME}/.local/state"
export XDG_CURRENT_DESKTOP=dwl
# NVIDIA Wayland-specific environment
# --- NVIDIA Wayland environment ---------------------------------------------
export GBM_BACKEND=nvidia-drm
export __GLX_VENDOR_LIBRARY_NAME=nvidia
export WLR_NO_HARDWARE_CURSORS=1
# WLR_NO_HARDWARE_CURSORS may be needed for wlroots + nvidia
# Remove if hardware cursors work correctly
export LIBVA_DRIVER_NAME=nvidia
# Hardware video decoding (Firefox, mpv)
export MOZ_ENABLE_WAYLAND=1
# Firefox: use Wayland backend
# Firefox: use native Wayland backend
export QT_QPA_PLATFORM=wayland
# Qt applications: use Wayland backend
@@ -29,6 +30,10 @@ export QT_QPA_PLATFORM=wayland
export SDL_VIDEODRIVER=wayland
# SDL2 games: prefer Wayland (falls back to X11 via XWayland)
# --- Seatd environment (seat manager for wlroots) --------------------------
export LIBSEAT_BACKEND=seatd
# Tell wlroots/dwl to use seatd for device access
# --- Ensure XDG runtime directory exists ------------------------------------
if [ ! -d "${XDG_RUNTIME_DIR}" ]; then
mkdir -p "${XDG_RUNTIME_DIR}"
@@ -37,12 +42,25 @@ fi
# --- Auto-start Wayland compositor on tty1 ----------------------------------
if [ -z "${WAYLAND_DISPLAY}" ] && [ "$(tty)" = "/dev/tty1" ]; then
# Start user D-Bus session (required by PipeWire, polkit, desktop apps)
if [ -z "${DBUS_SESSION_BUS_ADDRESS}" ]; then
eval "$(dbus-launch --sh-syntax)"
export DBUS_SESSION_BUS_ADDRESS
fi
# Start PipeWire audio stack (runs as user, not system service)
pipewire &
sleep 0.2
pipewire-pulse &
# PulseAudio compatibility server — needed by Firefox, Steam, most apps
wireplumber &
# Session manager — handles audio routing and device management
# Start polkit authentication agent (for GUI password prompts)
lxqt-policykit-agent &>/dev/null &
# Start the dwl Wayland compositor
# dwl will set WAYLAND_DISPLAY and become the session leader
exec dwl -s "foot" 2>/dev/null
# -s "startup_cmd" runs a command after dwl starts (opens a terminal)
exec dwl 2>/dev/null
fi