Last active
January 21, 2024 01:08
-
-
Save hyOzd/35e913db620b3ba086fb to your computer and use it in GitHub Desktop.
Reload a cinnamon extension or applet from the command line. Useful during extension/applet development. Replace the EXTENSION_UUID at the end of the command with your extensions UUID.
This file contains 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
# replace the EXTENSION_UUID with your extension/applet/desklet name | |
# replace the APPLET with other types if you are not working with an applet | |
dbus-send --session --dest=org.Cinnamon.LookingGlass --type=method_call /org/Cinnamon/LookingGlass org.Cinnamon.LookingGlass.ReloadExtension string:'EXTENSION_UUID' string:'APPLET' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you, I am finally able to create a proper quick touchscreen enable disable button within panel launcher because of this..