This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # written for fedora 32, x86-64 | |
| # rpmfusion repos | |
| sudo dnf install -y https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm | |
| sudo dnf install -y https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm | |
| # spotify (from rpmfusion) | |
| sudo dnf install -y lpf-spotify-client | |
| lpf approve spotify-client |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| import re | |
| import requests | |
| from gi.repository import GLib, Gio | |
| SHELL_SCHEMA = "org.gnome.shell" | |
| ENABLED_EXTENSIONS_KEY = "enabled-extensions" | |
| EXTENSION_DISABLE_VERSION_CHECK_KEY = "disable-extension-version-validation" | |
| DISABLE_USER_EXTENSIONS_KEY = "disable-user-extensions" |