From 580059734477e8a5c72d0338829908134e7f144b Mon Sep 17 00:00:00 2001 From: Nikesh Parajuli Date: Sat, 5 Oct 2024 02:28:34 -0400 Subject: [PATCH] docs: troubleshoot license activation --- .../3.troubleshooting/license-activation.md | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 content/3.troubleshooting/license-activation.md diff --git a/content/3.troubleshooting/license-activation.md b/content/3.troubleshooting/license-activation.md new file mode 100644 index 0000000..b9a6cba --- /dev/null +++ b/content/3.troubleshooting/license-activation.md @@ -0,0 +1,35 @@ +--- +title: License Activation +description: Troubleshooting common license activation issues in Msty +--- + + +## Activation Not Persisting + +If you're having trouble with your Msty license activation not persisting, it might be related to your desktop environment. + +To resolve this, set the `XDG_CURRENT_DESKTOP` environment variable to `GNOME` before launching the app. This ensures Msty can interact properly with the keychain for storing your license. + +::tabs{variant="card"} + ::div{label="AppImage" icon="ph:linux-logo"} + ### AppImage + + Open a terminal window and run the following command to open Msty: + + ```sh + export XDG_CURRENT_DESKTOP='GNOME' && ./.AppImage + ``` + :: + ::div{label="deb" icon="tabler:brand-debian"} + ### deb + + Open a terminal window and run the following command to open Msty: + + ```sh + export XDG_CURRENT_DESKTOP='GNOME' && msty + ``` + :: + :: +:: + +If the issue still persists, please reach out on our Discord server for further troubleshooting. \ No newline at end of file