mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-04 12:47:51 +02:00
45 lines
1.7 KiB
Lua
45 lines
1.7 KiB
Lua
-- Floating windows.
|
|
hl.window_rule({ match = { tag = "floating-window" }, float = true })
|
|
hl.window_rule({ match = { tag = "floating-window" }, center = true })
|
|
hl.window_rule({ match = { tag = "floating-window" }, size = { 875, 600 } })
|
|
|
|
hl.window_rule({
|
|
match = {
|
|
class = "(org.omarchy.btop|org.omarchy.terminal|org.omarchy.bash|org.codeberg.dnkl.foot|org.gnome.NautilusPreviewer|org.gnome.Evince|com.gabm.satty|Omarchy|About|TUI.float|imv|mpv)",
|
|
},
|
|
tag = "+floating-window",
|
|
})
|
|
hl.window_rule({
|
|
match = {
|
|
class = "(xdg-desktop-portal-gtk|sublime_text|DesktopEditors|org.gnome.Nautilus)",
|
|
title = "^(Open.*Files?|Open [F|f]older.*|Save.*Files?|Save.*As|Save|All Files|.*wants to [open|save].*|[C|c]hoose.*)",
|
|
},
|
|
tag = "+floating-window",
|
|
})
|
|
hl.window_rule({ match = { class = "org.gnome.Calculator" }, float = true })
|
|
|
|
-- Fullscreen screensaver.
|
|
hl.window_rule({ match = { class = "org.omarchy.screensaver" }, fullscreen = true })
|
|
hl.window_rule({ match = { class = "org.omarchy.screensaver" }, float = true })
|
|
hl.window_rule({ match = { class = "org.omarchy.screensaver" }, animation = "slide" })
|
|
|
|
-- No transparency on media windows.
|
|
hl.window_rule({
|
|
match = {
|
|
class = "^(zoom|vlc|mpv|org.kde.kdenlive|com.obsproject.Studio|com.github.PintaProject.Pinta|imv|org.gnome.NautilusPreviewer)$",
|
|
},
|
|
tag = "-default-opacity",
|
|
})
|
|
hl.window_rule({
|
|
match = {
|
|
class = "^(zoom|vlc|mpv|org.kde.kdenlive|com.obsproject.Studio|com.github.PintaProject.Pinta|imv|org.gnome.NautilusPreviewer)$",
|
|
},
|
|
opacity = "1 1",
|
|
})
|
|
|
|
-- Popped window rounding.
|
|
hl.window_rule({ match = { tag = "pop" }, rounding = 8 })
|
|
|
|
-- Prevent idle while open.
|
|
hl.window_rule({ match = { tag = "noidle" }, idle_inhibit = "always" })
|