2022-03-30 20:47:10 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2022-04-18 11:56:06 +02:00
|
|
|
# Nheko flatpak with xwayland as Nheko's wayland support is currently poor
|
2022-04-17 19:23:12 +02:00
|
|
|
# icons not working, context menus being inaccessible, some
|
|
|
|
# profiles not spawning windows
|
2022-09-29 15:41:46 +02:00
|
|
|
# USAGE: "nheko default" for the default profile or whatever profile is
|
|
|
|
# desired as I never run it without the profile flag
|
2022-04-12 14:56:22 +02:00
|
|
|
|
2022-03-30 20:47:10 +02:00
|
|
|
set -x
|
2022-10-15 16:25:02 +02:00
|
|
|
#flatpak run --env=QT_QPA_PLATFORM=xcb io.github.NhekoReborn.Nheko//master --profile $@
|
|
|
|
flatpak run io.github.NhekoReborn.Nheko//master --profile $@
|
2022-03-30 20:47:10 +02:00
|
|
|
set +x
|