diff --git a/README.md b/README.md index 2d7157d..3e5fa5b 100755 --- a/README.md +++ b/README.md @@ -1,45 +1,49 @@ Introduction ============= - -This script installs easily GNOME's 'Wacom Settings' in XFCE. +This script installs GNOME's 'Wacom Settings' in XFCE. ![Screenshot highlighting the settings' location](screenshot.png?raw=true) - Installation ============== -To install it, run the next command in this directory - +To install it, run the next command in this directory. After that you will find a new icon in your XFCE Settings. ```bash make install ``` -You'll find a new icon in your XFCE Settings. - -Uninstall -============== -To uninstall it, run the next command in this directory +To uninstall it ```bash make uninstall ``` -Troubleshoting +FAQ ============== -If you don't know what options to choose during the installation, just press enter. -The default configuration will work just fine. -For advanced users -================== -If you are experiencing any issue, you can try to solve it running +**What options should I choose during the installation?** +Just press enter. The default configuration will work just fine. + +**I disabled gnome-settings-daemon plugins. How do I restore them?** +``` +./commands.sh enable-gnome-plugins +``` + +**I'm an advanced user. How can I check the debugging commands?** ``` ./commands.sh --help ``` -Pourpuse +**I'm using an old PC. How can I save RAM?** + +After the installation run +``` +./commands.sh disable-autostart-gnome-settings-daemon +``` +You will save ~25MB. The settings will be shown using GTK. The leds in your tablet may not turn on. It works, though. + +Pourpose ================== We are aiming to implement this panel natively on XFCE. Meanwhile, you can install it from here. - Credits: Based on [achadwick's script](https://github.com/achadwick/gsdwacom4xfce). Currently developed by Zeioth. diff --git a/commands.sh b/commands.sh index 52132af..8a4b047 100755 --- a/commands.sh +++ b/commands.sh @@ -83,7 +83,7 @@ case "$1" in uninstall-dependencies) # Prompt the user to uninstall the dependencies read -e -p "Uninstall dependencies? Choose 'n' if you use Gnome as secondary desktop environment (y/n): "\ - -i "y" dependencies_agreement + -i "n" dependencies_agreement if [ "$dependencies_agreement" == "y" ]; then @echo "Uninstalling dependencies..." sudo apt-get remove gnome-settings-daemon gnome-control-center diff --git a/gnome-settings-daemon-for-xfce.desktop b/gnome-settings-daemon-for-xfce.desktop index d000931..ee31cc9 100644 --- a/gnome-settings-daemon-for-xfce.desktop +++ b/gnome-settings-daemon-for-xfce.desktop @@ -1,7 +1,7 @@ [Desktop Entry] Type=Application -Name=GSD-based Wacom support for Xfce +Name=Gnome settings daemon Comment=Manage Wacom settings via the GNOME settings daemon Exec=gnome-settings-daemon Icon=input-tablet -OnlyShowIn=XFCE; +OnlyShowIn=XFCE; \ No newline at end of file