Dejvino

Results 8 comments of Dejvino

I was about to submit a PR but it seems there already is one fixing it nicely: #274 😅 👏

ℹī¸ This can be fixed with PR #273, tested on my PinePhone. It rectifies the feature that originally broke the touch controls: you can use the Back and Forward mouse...

`squeekboard` only starts the keyboard app, it is initially closed. You can show / hide the keyboard with commands `swayphone_keyboard_show` and `swayphone_keyboard_hide` which sends a D-Bus event to the squeekboard....

A workaround is to comment out this line: ``` Exec=elogind-inhibit --what=shutdown:handle-power-key --mode=block dbus-run-session /usr/bin/sway ``` and enable (remove the comment) from the next line: ``` Exec=dbus-run-session /usr/bin/sway ``` plus let...

I had the same result when trying this on a newer postmarketos installation and I expect this is due to issue #3

On Arch you have to enable `sway.service` in systemd: `sudo systemctl enable --now sway.service` This should add a link from `/etc/systemd/system/graphical.target.wants/sway.service` to `/usr/lib/systemd/system/sway.service`. In case `/usr/lib/systemd/system/sway.service` is not part of...

One little improvement worth doing on Arch: Add `EnvironmentFile=/etc/systemd/system/sway.env` under the `ExecStart` line into the `sway.service` file, the referenced `sway.env` file should have this content: ``` MOZ_ENABLE_WAYLAND=1 GDK_GL=gles QT_WAYLAND_DISABLE_WINDOWDECORATION=1 QT_QPA_PLATFORM=wayland...