mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-06 04:29:34 +02:00
9 lines
558 B
Lua
9 lines
558 B
Lua
-- Float Steam.
|
|
hl.window_rule({ match = { class = "steam" }, float = true })
|
|
hl.window_rule({ match = { class = "steam", title = "Steam" }, center = true })
|
|
hl.window_rule({ match = { class = "steam.*" }, tag = "-default-opacity" })
|
|
hl.window_rule({ match = { class = "steam.*" }, opacity = "1 1" })
|
|
hl.window_rule({ match = { class = "steam", title = "Steam" }, size = { 1100, 700 } })
|
|
hl.window_rule({ match = { class = "steam", title = "Friends List" }, size = { 460, 800 } })
|
|
hl.window_rule({ match = { class = "steam" }, idle_inhibit = "fullscreen" })
|