From c6d0480f9b545b299e9f3be5759b5e67110e1ef1 Mon Sep 17 00:00:00 2001 From: AlephNought <64273472+RadovanSk@users.noreply.github.com> Date: Tue, 28 Nov 2023 01:25:46 +0100 Subject: [PATCH] Perfomance category suggestion (#405) * Perfomance category suggestion * Perfomance category suggestion * new file: pages/Configuring/Perfomance.md * Moving stuff from FAQ to new page * Add power draw back to FAQ * More changes * Revert mistake --- pages/Configuring/Perfomance.md | 22 ++++++++++++++++++++++ pages/FAQ/_index.md | 11 ----------- 2 files changed, 22 insertions(+), 11 deletions(-) create mode 100644 pages/Configuring/Perfomance.md diff --git a/pages/Configuring/Perfomance.md b/pages/Configuring/Perfomance.md new file mode 100644 index 0000000..f76178d --- /dev/null +++ b/pages/Configuring/Perfomance.md @@ -0,0 +1,22 @@ +This page documents known tricks and fixes to boost perfomance if by any chance you stumble upon problems or you do not care that much about animations. + +# Fractional scaling + +Wayland fractional scaling is a lot better than before, but it is not perfect. Some applications do not support it yet or the support is experimental at best. If you have problems with your graphics card having high usage and hyprland feeling laggy then try setting the scaling to integer numbers such as `1` or `2` like in this example `monitor=,preferred,auto,2`. + +# Low FPS/stutter/FPS drops on Intel iGPU with TLP (mainly laptops) + +The TLP defaults are rather aggressive, setting `INTEL_GPU_MIN_FREQ_ON_AC` and/or `INTEL_GPU_MIN_FREQ_ON_BAT` in `/etc/tlp.conf` to something slightly higher (e.g. to 500 from 300) will reduce stutter significantly or, in the best case, remove it completely. + +# How do I make Hyprland draw as little power as possible on my laptop? + +**_Useful Optimizations_**: + +* `decoration:blur = false` and `decoration:drop_shadow = false` to disable + fancy but battery hungry effects. + +* `misc:vfr = true`, since it'll lower the amount of sent frames when nothing is happening on-screen. + +# My games work poorly, especially proton ones + +Use `gamescope`, tends to fix any and all issues with wayland/Hyprland. diff --git a/pages/FAQ/_index.md b/pages/FAQ/_index.md index 3ffce76..3d01ece 100644 --- a/pages/FAQ/_index.md +++ b/pages/FAQ/_index.md @@ -79,10 +79,6 @@ Also install `qt6-wayland` if you plan to use obs. See [Wallpapers](../Useful-Utilities/Wallpapers). -# My games work poorly, especially proton ones - -Use `gamescope`, tends to fix any and all issues with wayland/Hyprland. - # How heavy is this? Not that much heavier than Xorg. If you want maximum performance, consider @@ -248,9 +244,6 @@ Alternatively, you can simply intercept the middle-click action all together, vi # How do I make Hyprland draw as little power as possible on my laptop? -I assume you already have `damage_tracking` on full. If you don't, change it. -It's heavily advised to use `full` regardless of anything. - **_Useful Optimizations_**: * `decoration:blur = false` and `decoration:drop_shadow = false` to disable @@ -301,7 +294,3 @@ set `MOD` and `KEY` to desired values. By pressing the selected combo you will enter a mode where hyprland ignores your keybinds and passes them on to the vm. Then, pressing `SUPER + Escape` will leave that mode. - -# Low FPS/stutter/FPS drops on Intel iGPU with TLP (mainly laptops) - -The TLP defaults are rather aggressive, setting `INTEL_GPU_MIN_FREQ_ON_AC` and/or `INTEL_GPU_MIN_FREQ_ON_BAT` in `/etc/tlp.conf` to something slightly higher (e.g. to 500 from 300) will reduce stutter significantly or, in the best case, remove it completely.