#!/usr/bin/env bash # @vicinae.schemaVersion 1 # @vicinae.title Install Web App # @vicinae.mode silent # @vicinae.icon ../../icons/hicolor/scalable/apps/panama-settings.svg # @vicinae.description Turn a website into an application with its own icon and window. # @vicinae.keywords ["web app", "install", "site", "pwa", "shortcut", "browser"] # @vicinae.argument1 { "type": "text", "placeholder": "https://example.com" } # @vicinae.argument2 { "type": "text", "placeholder": "name (optional)" } exec "$HOME/.local/share/Panama/bin/panama-webapp" install "$1" "$2"