mirror of
https://github.com/hyprwm/hyprland-plugins.git
synced 2024-11-08 04:25:59 +01:00
34 lines
No EOL
766 B
Markdown
34 lines
No EOL
766 B
Markdown
# csgo-vulkan-fix
|
|
|
|
Originally meant for csgo / cs2, but can work with any app, really.
|
|
|
|
csgo-vulkan-fix is a way to force apps to a fake resolution without
|
|
them realizing it.
|
|
|
|
If you want to play CS2, you're locked to your native res.
|
|
Other resolutions (especially not 16:9) are wonky.
|
|
|
|
With this plugin, you aren't anymore.
|
|
|
|
CS2 launch options:
|
|
```
|
|
-vulkan -window -w <RESX> -h <RESY> -vulkan
|
|
```
|
|
|
|
example plugin config:
|
|
```
|
|
plugin {
|
|
csgo-vulkan-fix {
|
|
res_w = 1680
|
|
res_h = 1050
|
|
|
|
# NOT a regex! This is a string and has to exactly match initial_class
|
|
class = cs2
|
|
|
|
# Whether to fix the mouse position. A select few apps might be wonky with this.
|
|
fix_mouse = true
|
|
}
|
|
}
|
|
```
|
|
|
|
fullscreen the game manually and enjoy. |