feat(hypr): (almost) complete lua rewrite of configs

This commit is contained in:
2026-06-14 07:25:42 +02:00
parent 6e35326906
commit 37cf063eb1
11 changed files with 229 additions and 30 deletions
+44
View File
@@ -24,3 +24,47 @@ hl.config({
enabled = true,
},
})
hl.curve("main-bezier", {
type = "bezier",
points = { { 0.05, 0.9 }, { 0.1, 1.05 } },
})
hl.animation({
leaf = "windowsIn",
enabled = true,
bezier = "main-bezier",
speed = 3,
})
hl.animation({
leaf = "windowsOut",
enabled = true,
bezier = "main-bezier",
speed = 4,
style = "popin 80%"
})
hl.animation({
leaf = "border",
enabled = true,
speed = 8,
})
hl.animation({
leaf = "fade",
enabled = true,
speed = 3,
})
hl.animation({
leaf = "workspace",
enabled = true,
speed = 1,
})
hl.animation({
leaf = "specialWorkspace",
enabled = true,
speed = 1,
})
+6
View File
@@ -3,4 +3,10 @@ hl.on("hyprland.start", function()
-- hl.exec_cmd("dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP XAUTHORITY DISPLAY")
-- hl.exec_cmd("systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP")
hl.exec_cmd("systemctl --user start hyprpolkitagent")
hl.exec_cmd("hypridle")
hl.exec_cmd("nm-applet")
hl.exec_cmd("nextcloud --background")
hl.exec_cmd("quickshell")
hl.exec_cmd("matugen")
hl.exec_cmd("wl-paste --type text --watch cliphist store")
end)
+1
View File
@@ -0,0 +1 @@
-- for the new layout https://wiki.hypr.land/Configuring/Advanced-and-Cool/Uncommon-tips-and-tricks/#per-layout-bindings
+53 -1
View File
@@ -1 +1,53 @@
-- Floating windows & their positioning
-- Floating windows
-- Float
hl.window_rule({
match = {
tag = "dialog",
},
float = true,
center = true,
})
-- No float
hl.window_rule({
match = {
title = "launchers",
},
float = false,
})
-- fullscreen
hl.window_rule({
match = {
tag = "game",
},
fullscreen = true,
})
hl.window_rule({
match = {
class = "wlogout",
},
fullscreen = true,
})
-- Termfilechooser
hl.window_rule({
match = {
title = "termfilechooser",
},
float = true,
center = true,
dim_around = true,
size = { 1400, 800 },
})
-- hidden terminator
hl.window_rule({
match = {
title = "^hidden-terminator$",
},
float = true,
center = true,
size = { 0, 0 },
move = { 0, 0 }
})
+20
View File
@@ -1 +1,21 @@
-- Idleinhibits
hl.window_rule({
match = {
tag = "game|launchers",
},
idle_inhibit = "focus"
})
hl.window_rule({
match = {
title = "Bitwarden|secret|[aA]uthentication"
},
no_screen_share = true
})
hl.window_rule({
match = {
class = "nm-connection-editor"
},
no_screen_share = true
})
@@ -1 +0,0 @@
-- set the layer
@@ -1,3 +0,0 @@
hl.window_rule({
name = ""
})
+38
View File
@@ -0,0 +1,38 @@
-- ┌ ┐
-- │ Use tags to group windows into groups │
-- └ ┘
-- Games
hl.window_rule({
match = {
class = "steam_app",
},
tag = "+game",
})
hl.window_rule({
match = {
title = "Minecraft|Beat Saber",
},
tag = "+game",
})
-- Launchers
hl.window_rule({
match = {
class = "steam|minecraft-launcher|org\\.prismlauncher\\.PrismLauncher",
},
tag = "+launchers",
})
-- Dialogs
hl.window_rule({
match = {
class = "file_progress|confirm|dialog|download|notification|error|splash|confirmreset|lxappearance|pavucontrol|file-roller",
},
tag = "+dialog",
})
hl.window_rule({
match = {
class = "SteamVR Status|Open File|Media viewer|Volume Control|Picture-in-Picture|File Operation Progress|Loading|AG Controller|AG Controller|Qalculate",
},
tag = "+dialog",
})
@@ -1,15 +1,37 @@
-- Set the workspace for certain apps
-- ┌ ┐
-- │ Set the workspace for certain apps │
-- └ ┘
-- Workspace 1
hl.window_rule({
match = { class = ".*steam_app.*", title = "ALVR.*|^hidden-terminator" },
match = { tag = "game" },
workspace = 1,
})
hl.window_rule({
match = { title = "ALVR|^hidden-terminator$" },
workspace = 1,
})
-- Workspace 2
hl.window_rule({
match = { class = "evince|okular|org\\.pwmt\\.zathura|librewolf", title = "BSManager|Beat Saber.*" },
match = { class = "evince|okular|org\\.pwmt\\.zathura|librewolf" },
workspace = 2,
})
hl.window_rule({
match = { title = "BSManager" },
workspace = 2,
})
-- Workspace 3
hl.window_rule({
match = { class = "minecraft-launcher", title = ".*Minecraft.*|.*[Ss]team.*" },
match = { class = "minecraft-launcher" },
workspace = 3,
})
hl.window_rule({
match = { title = "[Ss]team" },
workspace = 3,
})
hl.window_rule({
match = { title = "Qalculate|AG Controller" },
workspace = "special",
})
@@ -0,0 +1,20 @@
hl.workspace_rule({
workspace = "1",
monitor = "DP-1",
default = true,
})
hl.workspace_rule({
workspace = "2",
monitor = "DP-2",
default = true,
})
hl.workspace_rule({
workspace = "3",
monitor = "DP-1",
default = true,
})
hl.workspace_rule({
workspace = "4",
monitor = "DP-2",
default = true,
})