mirror of
https://github.com/hyprwm/hyprland-wiki.git
synced 2024-11-22 12:45:59 +01:00
minor FAQ Edits (#462)
* tweaked formatting and removed double spaces
* added new FAQ
* formatting
* partially revert e2d4765389
* corrected grammar
This commit is contained in:
parent
6a057f421e
commit
b63398d2fe
1 changed files with 20 additions and 7 deletions
|
@ -100,6 +100,7 @@ updates after pressing a key) will cause rapid changes in brightness.
|
|||
# How do I update?
|
||||
|
||||
Open a terminal where you cloned the repo.
|
||||
|
||||
```bash
|
||||
git pull
|
||||
make all && sudo make install
|
||||
|
@ -227,6 +228,7 @@ launched with `exec-once` should fix all issues. Adjust the sleep durations to t
|
|||
See [Environment Variables](../Configuring/Environment-variables)
|
||||
|
||||
The `env` keyword is used for this purpose. For example:
|
||||
|
||||
```ini
|
||||
env = XDG_CURRENT_DESKTOP,Hyprland
|
||||
```
|
||||
|
@ -252,8 +254,7 @@ You can simply intercept the middle-click action all together, via hyprland bind
|
|||
|
||||
**_Useful Optimizations_**:
|
||||
|
||||
* `decoration:blur = false` and `decoration:drop_shadow = false` to disable
|
||||
fancy but battery hungry effects.
|
||||
* `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.
|
||||
|
||||
|
@ -268,12 +269,15 @@ See [The XDPH Page](../Useful-Utilities/Hyprland-desktop-portal).
|
|||
You most likely have multiple portal impls / an impl is failing to launch.
|
||||
|
||||
# My screenshot utilities won't work with multiple screens
|
||||
|
||||
Some programs like flameshot (currently) has limited wayland support so on most Wayland compositors, you will have to do few tweaks.
|
||||
For Hyprland, you can add these window rules to your config to make said programs work with both of your screens.
|
||||
|
||||
```windowrulev2=float,title:^(flameshot)
|
||||
windowrulev2=move 0 0,title:^(flameshot)
|
||||
windowrulev2=nofullscreenrequest,title:^(flameshot)
|
||||
```
|
||||
|
||||
# I cannot bind SUPER as my mod key on my laptop
|
||||
|
||||
Many laptops have a built-in function to toggle `SUPER` between single key press mode and hold mode. This is usually indicated by a padlock on the `SUPER` key.
|
||||
|
@ -328,3 +332,12 @@ If the pop-up disappears immediately, you can use:
|
|||
```ini
|
||||
windowrulev2 = minsize 1 1, title:^(TITLE)$, class:^(CLASS)$
|
||||
```
|
||||
|
||||
# Steam's file picker no worky
|
||||
|
||||
On instances where you have a steam library on another drive that you have
|
||||
to add, Hyprland's file picker would not normally appear when selecting
|
||||
a directory from steam.
|
||||
|
||||
Steam has its own file picker, however, it's not functional. Install
|
||||
`xdg-desktop-portal-gtk` to show the desktop's file picker.
|
||||
|
|
Loading…
Reference in a new issue