From 09d35cfc4dc8cb5f98fd3e0e572b5f8e9cc25ef6 Mon Sep 17 00:00:00 2001 From: Felis Date: Sun, 23 Aug 2026 16:57:44 -0700 Subject: [PATCH] remove hyprspace --- config/keybinds.lua | 8 -------- config/settings.lua | 2 +- hyprqt6engine.conf | 6 ++++++ noctalia.lua | 30 +++++++++++++++++++++++++----- 4 files changed, 32 insertions(+), 14 deletions(-) diff --git a/config/keybinds.lua b/config/keybinds.lua index a2b6b6c..d66e198 100644 --- a/config/keybinds.lua +++ b/config/keybinds.lua @@ -286,14 +286,6 @@ hl.bind( { description = "Promote to master" } ) --- Hyprtasking provides a visual overview of windows on all workspaces. -hl.bind( - chord(hyper, "SPACE"), - function() - hl.plugin.overview.toggle("all") - end, - { description = "Toggle all-workspace window overview" } -) -- Toggle a focused client into an 80%-sized centered floating mode. Returning -- it to tiled mode lets the active layout restore its previous geometry. diff --git a/config/settings.lua b/config/settings.lua index 9ef6500..d23577d 100644 --- a/config/settings.lua +++ b/config/settings.lua @@ -11,7 +11,7 @@ return { -- Store raw executable names here. Callers decide whether a command should -- be wrapped with `uwsm-app` or executed directly. programs = { - terminal = "alacritty", + terminal = "kitty", file_manager = "dolphin", launcher = "hyprlauncher", }, diff --git a/hyprqt6engine.conf b/hyprqt6engine.conf index 99a0b40..1d632ec 100644 --- a/hyprqt6engine.conf +++ b/hyprqt6engine.conf @@ -2,4 +2,10 @@ theme { color_scheme = /usr/share/color-schemes/BreezeDark.colors style = Breeze icon_theme = breeze-dark + + font = Source Han Sans CN + font_size = 11 + + font_fixed = monospace + font_fixed_size = 11 } diff --git a/noctalia.lua b/noctalia.lua index 4562308..2e09b71 100644 --- a/noctalia.lua +++ b/noctalia.lua @@ -1,9 +1,13 @@ -- Generated by Noctalia -local primary = "rgb(fff59b)" -local surface = "rgb(070722)" -local secondary = "rgb(a9aefe)" -local error = "rgb(fd4663)" +local primary = "rgb(7aa2f7)" +local surface = "rgb(1a1b26)" +local on_surface = "rgb(c0caf5)" +local secondary = "rgb(bb9af7)" +local on_secondary = "rgb(16161e)" +local error = "rgb(f7768e)" +local on_error = "rgb(16161e)" +local shadow = "rgb(15161e)" local function apply_theme() hl.config({ @@ -13,7 +17,14 @@ local function apply_theme() inactive_border = surface, }, }, - + decoration = { + shadow = { + color = shadow, + }, + glow = { + color = shadow, + }, + }, group = { col = { border_active = secondary, @@ -23,12 +34,17 @@ local function apply_theme() }, groupbar = { + gradients = true, col = { active = secondary, inactive = surface, locked_active = error, locked_inactive = surface, }, + text_color = on_secondary, + text_color_inactive = on_surface, + text_color_locked_active = on_error, + text_color_locked_inactive = on_surface, }, }, }) @@ -38,8 +54,12 @@ return { colors = { primary = primary, surface = surface, + on_surface = on_surface, secondary = secondary, + on_secondary = on_secondary, error = error, + on_error = on_error, + shadow = shadow, }, apply_theme = apply_theme }