Linux support is in Beta as of v7.0.0. Core features work well on major distros. See Known Issues below for edge cases.
Download from skales.app or GitHub Releases.
Two formats are available:
| Format | Best for |
|---|---|
| AppImage (recommended) | Any distro — Ubuntu, Fedora, Arch, Manjaro, Mint, etc. |
| .deb | Debian, Ubuntu, and derivatives (apt-based) |
Works on any distro without installation. No root required.
# Make executable and run
chmod +x Skales-7.0.0-x64.AppImage
./Skales-7.0.0-x64.AppImageTo add to your application launcher, create a .desktop file:
cat > ~/.local/share/applications/skales.desktop << 'EOF'
[Desktop Entry]
Name=Skales
Exec=/path/to/Skales-7.0.0-x64.AppImage
Icon=skales
Type=Application
Categories=Utility;Development;
EOF# Install the package
sudo dpkg -i Skales-7.0.0-x64.deb
# Fix any missing dependencies
sudo apt-get install -f
# Launch
skalesSkales does not configure auto-start automatically on Linux. To start Skales on login:
mkdir -p ~/.config/autostart
cat > ~/.config/autostart/skales.desktop << 'EOF'
[Desktop Entry]
Name=Skales
Exec=/path/to/Skales-7.0.0-x64.AppImage
Type=Application
X-GNOME-Autostart-enabled=true
EOFSkales detects Ollama automatically on launch. To install:
curl -fsSL https://ollama.com/install.sh | shPull a model to get started:
ollama pull llama3.2
# or for a larger model:
ollama pull qwen2.5:7bSkales will auto-detect Ollama at http://localhost:11434 when you select the Ollama provider in onboarding. For remote Ollama, set the URL in Settings → AI Models → Ollama → Base URL.
On GNOME, the system tray requires an extension:
# Install AppIndicator extension
sudo apt install gnome-shell-extension-appindicator # Ubuntu/Debian
# Then enable it in GNOME ExtensionsOn KDE Plasma, XFCE, and i3/Sway with a compatible bar (e.g. waybar), the tray works without additional setup.
| Issue | Workaround |
|---|---|
| Desktop Buddy floating window may behave unexpectedly on tiling WMs (i3, Sway, Hyprland) | Disable Desktop Buddy in Settings → Desktop App if it causes layout issues |
| System tray icon missing on stock GNOME | Install AppIndicator extension (see above) |
| Auto-start not configured automatically | Create a .desktop file in ~/.config/autostart/ (see above) |
| FUSE required for AppImage on some distros | sudo apt install fuse libfuse2 |
| Wayland: some popup windows may flicker | Launch with ELECTRON_OZONE_PLATFORM_HINT=wayland prefix |
All Skales data (memory, settings, API keys, credentials) is stored in:
~/.skales-data/
This folder persists across updates and uninstalls. Back it up to preserve your configuration.
AppImage: Simply delete the .AppImage file. Remove ~/.skales-data/ to wipe all data.
.deb:
sudo dpkg -r skales
# To also remove data:
rm -rf ~/.skales-data/Linux-specific issues: github.com/skalesapp/skales/issues
Please include your distro, desktop environment, and display server (X11 or Wayland) in bug reports.