remove hyprspace

This commit is contained in:
2026-08-23 16:57:44 -07:00
parent bdec7e77bf
commit 09d35cfc4d
4 changed files with 32 additions and 14 deletions
-8
View File
@@ -286,14 +286,6 @@ hl.bind(
{ description = "Promote to master" } { 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 -- Toggle a focused client into an 80%-sized centered floating mode. Returning
-- it to tiled mode lets the active layout restore its previous geometry. -- it to tiled mode lets the active layout restore its previous geometry.
+1 -1
View File
@@ -11,7 +11,7 @@ return {
-- Store raw executable names here. Callers decide whether a command should -- Store raw executable names here. Callers decide whether a command should
-- be wrapped with `uwsm-app` or executed directly. -- be wrapped with `uwsm-app` or executed directly.
programs = { programs = {
terminal = "alacritty", terminal = "kitty",
file_manager = "dolphin", file_manager = "dolphin",
launcher = "hyprlauncher", launcher = "hyprlauncher",
}, },
+6
View File
@@ -2,4 +2,10 @@ theme {
color_scheme = /usr/share/color-schemes/BreezeDark.colors color_scheme = /usr/share/color-schemes/BreezeDark.colors
style = Breeze style = Breeze
icon_theme = breeze-dark icon_theme = breeze-dark
font = Source Han Sans CN
font_size = 11
font_fixed = monospace
font_fixed_size = 11
} }
+25 -5
View File
@@ -1,9 +1,13 @@
-- Generated by Noctalia -- Generated by Noctalia
local primary = "rgb(fff59b)" local primary = "rgb(7aa2f7)"
local surface = "rgb(070722)" local surface = "rgb(1a1b26)"
local secondary = "rgb(a9aefe)" local on_surface = "rgb(c0caf5)"
local error = "rgb(fd4663)" 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() local function apply_theme()
hl.config({ hl.config({
@@ -13,7 +17,14 @@ local function apply_theme()
inactive_border = surface, inactive_border = surface,
}, },
}, },
decoration = {
shadow = {
color = shadow,
},
glow = {
color = shadow,
},
},
group = { group = {
col = { col = {
border_active = secondary, border_active = secondary,
@@ -23,12 +34,17 @@ local function apply_theme()
}, },
groupbar = { groupbar = {
gradients = true,
col = { col = {
active = secondary, active = secondary,
inactive = surface, inactive = surface,
locked_active = error, locked_active = error,
locked_inactive = surface, 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 = { colors = {
primary = primary, primary = primary,
surface = surface, surface = surface,
on_surface = on_surface,
secondary = secondary, secondary = secondary,
on_secondary = on_secondary,
error = error, error = error,
on_error = on_error,
shadow = shadow,
}, },
apply_theme = apply_theme apply_theme = apply_theme
} }