remove hyprspace
This commit is contained in:
@@ -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.
|
||||
|
||||
+1
-1
@@ -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",
|
||||
},
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
+25
-5
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user