Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions default/hypr/apps/steam.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,8 @@ o.window("steam", { float = true, idle_inhibit = "fullscreen" })
o.window({ class = "steam", title = "Steam" }, { center = true, size = { 1100, 700 } })
o.window("steam.*", { tag = "-default-opacity", opacity = "1 1" })
o.window({ class = "steam", title = "Friends List" }, { size = { 460, 800 } })

-- Games run as steam_app_<appid>. Gamepad input goes straight to the game and
-- never through the compositor, so a fullscreen game played on a controller
-- looks idle and the screensaver/lock fire mid-game.
o.window("steam_app_.*", { idle_inhibit = "fullscreen" })