hyprland-wiki/pages/Useful Utilities/Hyprland-desktop-portal.md

189 lines
5.8 KiB
Markdown
Raw Normal View History

2022-12-03 23:52:10 +01:00
An XDG Desktop Portal (later called XDP) is a program that lets other
applications communicate swiftly with the compositor through D-Bus.
It's used for stuff like e.g. opening file pickers, screen sharing.
On Wayland, it also requires an implementation. For Hyprland,
you'd usually use `xdg-desktop-portal-wlr` (later called XDPW)
Unfortunately, due to various reasons the -wlr portal is inferior
to the KDE or Gnome ones.
In order to bridge the gap, Hyprland has its own fork of XDPW that
has more features, called [xdg-desktop-portal-hyprland](https://github.com/hyprwm/xdg-desktop-portal-hyprland).
(later called XDPH)
{{< hint type=important >}}
You don't **need** XDPH. Hyprland will work with XDPW, but XDPH has more features, like e.g.
2022-12-05 02:02:43 +01:00
window sharing.
2022-12-05 02:07:34 +01:00
XDPH will work on other wlroots-based compositors, although limited to the XDPW features (other
will be disabled)
2022-12-03 23:52:10 +01:00
{{< /hint >}}
## Installing
{{< tabs "uniqueid" >}}
2022-12-03 23:52:10 +01:00
{{< tab "Arch Linux" >}}
```plain
2023-04-11 00:03:21 +02:00
pacman -S xdg-desktop-portal-hyprland
```
or, for -git:
```plain
2022-12-05 02:01:55 +01:00
yay -S xdg-desktop-portal-hyprland-git
```
2023-01-20 16:56:34 +01:00
{{< /tab >}}
{{< tab "Gentoo" >}}
## Unmask dependencies
### /etc/portage/profile/package.unmask
```plain
dev-qt/qtbase
dev-qt/qtwayland
dev-qt/qtdeclarative
dev-qt/qtshadertools
```
## Apply necessary useflags
### /etc/portage/package.use
```plain
dev-qt/qtbase opengl egl eglfs gles2-only
dev-qt/qtdeclarative opengl
sys-apps/xdg-desktop-portal screencast
```
## Unmask dependencies and xdph
### /etc/portage/package.accept_keywords
```plain
gui-libs/xdg-desktop-portal-hyprland
dev-qt/qtbase
dev-qt/qtwayland
dev-qt/qtdeclarative
dev-qt/qtshadertools
```
btw those are the useflags that I have tested, you could also test others.
## Installation
```sh
eselect repository enable guru
emaint sync -r guru
emerge --ask --verbose gui-libs/xdg-desktop-portal-hyprland
```
{{< /tab >}}
{{< tab "Manual" >}}
2022-12-03 23:52:10 +01:00
See [The Github repo's readme](https://github.com/hyprwm/xdg-desktop-portal-hyprland).
{{</ tab >}}
{{< /tabs >}}
2022-12-10 18:06:29 +01:00
{{< hint type=important >}}
It's recommended to uninstall any other portal implementations to avoid conflicts with the `-hyprland` or `-wlr` ones.
`-kde` and `-gnome` portals are known to cause issues.
The `-kde` portal is unfortunately a hard dependency of `plasma-integration` in Arch Linux. To uninstall it,
run the command `pacman -Rnsdd xdg-desktop-portal-kde`, which skips all dependency checks.
Both `-wlr` and `-hyprland` installed at once will also cause conflicts. Choose one and uninstall the other.
2023-08-25 20:24:02 +02:00
Please note that `-hyprland` does not implement a file picker, for that, I recommend installing `xdg-desktop-portal-gtk`,
which will not cause conflicts.
To keep any incompatible portal installed the relvant `.portal` file can be moved out of
'/usr/share/xdg-desktop-portal/portals/' to temporarily disable the portal. A script and the `exec-once`
directive can be used to automate this process at startup:
```bash
#!/bin/sh
# usage: $0 portal-name [enable/disable]
# args:
# portal-name: the name of the .portal file in /usr/share/xdg-desktop-portal/portals/ without the extension
# [enable/disable]: optional - whether to move the file into $ENABLED_PORTAL_DIR to enable it,
# or to move it into $DISABLED_PORTAL_DIR to disable it. The portal will be toggled
# if this argument is omitted.
ENABLED_PORTAL_DIR="/usr/share/xdg-desktop-portal/portals"
# needs to be created manually
DISABLED_PORTAL_DIR="/usr/share/xdg-desktop-portal/disabled-portals"
is_portal_enabled() {
[ -f "$ENABLED_PORTAL_DIR/$1.portal" ]
}
is_portal_disabled() {
[ -f "$DISABLED_PORTAL_DIR/$1.portal" ]
}
enable_portal() {
mv "$DISABLED_PORTAL_DIR/$1.portal" "$ENABLED_PORTAL_DIR/$1.portal"
}
disable_portal() {
mv "$ENABLED_PORTAL_DIR/$1.portal" "$DISABLED_PORTAL_DIR/$1.portal"
}
remove_disabled_portal() {
rm "$DISABLED_PORTAL_DIR/$1.portal"
}
PORTAL=$1
ENABLE=${2:-$(is_portal_enabled "$PORTAL" && echo "disable" || echo "enable")}
if [ "$ENABLE" = "enable" ]; then
if is_portal_enabled "$PORTAL"; then
# remove disabled portal if enabled portal exists as well,
# as the enabled portal is most likely a newly installed version
is_portal_disabled "$PORTAL" && remove_disabled_portal "$PORTAL"
else
is_portal_disabled "$PORTAL" && enable_portal "$PORTAL"
fi
else
is_portal_enabled "$PORTAL" && disable_portal "$PORTAL"
fi
```
2023-02-17 00:56:49 +01:00
The incompatible portal can then be re-enabled with the same script inside the autostart mechanisim of the intented
environment. Keep in mind that the directory for disabled portals needs to be created manually and this script needs
to have access to /usr/share/xdg-desktop-portal/portals/ and the disabled directory.
2022-12-10 18:06:29 +01:00
{{< /hint >}}
2022-12-05 02:01:55 +01:00
## Usage
Should start automatically.
The most basic way of telling everything is OK is by trying to screenshare anything, or
open OBS and select pipewire source. If XDPH is running, a qt menu will pop up asking you
what to share.
If it doesn't, and you get e.g. slurp, then XDPW is launching. In that case, try removing XDPW.
XDPH will work on other wlroots compositors, but features available only on Hyprland will not work
(e.g. window sharing)
2022-12-03 23:52:10 +01:00
For a nuclear option, you can use this script and `exec-once` it:
```sh
#!/bin/bash
sleep 1
killall -e xdg-desktop-portal-hyprland
killall -e xdg-desktop-portal-wlr
2022-12-03 23:52:10 +01:00
killall xdg-desktop-portal
2023-02-08 11:18:09 +01:00
/usr/lib/xdg-desktop-portal-hyprland &
2022-12-03 23:52:10 +01:00
sleep 2
/usr/lib/xdg-desktop-portal &
```
2022-12-05 02:01:55 +01:00
adjust the paths if incorrect.
2023-02-17 00:56:49 +01:00
## Debugging
If you get long app launch times, or screensharing does not work, consult the logs.
`systemctl --user status xdg-desktop-portal-hyprland`
if you see a crash, it's most likely you are missing `qt6-wayland` and/or `qt5-wayland`.
if you don't, make _sure_ you don't have `-kde` or `-gnome` installed. Only `-gtk`
will work with `-hyprland` or `-wlr` on Hyprland.