#!/usr/bin/env xdg-open [Desktop Entry] Type=Application Terminal=false Name=Flip Disabled Icon=/home/nemo/.local/share/applications/flipdisabled.png Exec=fingerterm -e /home/nemo/.local/share/applications/flipdisabled.sh
#!/bin/sh #toggle mcetool flipover-gesture detection #Markkyboy 2016 TOGGLE=$HOME/.toggle if [ ! -e $TOGGLE ]; then touch $TOGGLE mcetool --set-flipover-gesture-detection=disabled echo flip-detection - disabled else rm $TOGGLE mcetool --set-flipover-gesture-detection=enabled echo flip-detection - enabled fi