[feature-systemd] Run comfortable-swipe as a service
This commit is contained in:
parent
44661a8125
commit
2dbc2be653
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.log
|
||||||
48
README.md
48
README.md
@ -26,45 +26,9 @@ Comfortable, seamless, and fast 3-finger (and 4-finger) touchpad swipe gestures
|
|||||||
|
|
||||||
4. You may delete the downloaded `comfortable-swipe-ubuntu` folder after installation.
|
4. You may delete the downloaded `comfortable-swipe-ubuntu` folder after installation.
|
||||||
|
|
||||||
## How to Run
|
|
||||||
|
|
||||||
1. Make sure `~/.local/bin/` is added to your PATH.
|
|
||||||
2. Run
|
|
||||||
|
|
||||||
```
|
|
||||||
comfortable-swipe start
|
|
||||||
```
|
|
||||||
|
|
||||||
3. Optional: Automatically run on startup
|
|
||||||
|
|
||||||
```
|
|
||||||
comfortable-swipe autostart
|
|
||||||
```
|
|
||||||
|
|
||||||
### Permissions
|
|
||||||
Sometimes, you'll need some permissions to read touchpad input data.
|
|
||||||
|
|
||||||
1. Find out your permission group with `ls -l /dev/input/event*`
|
|
||||||
```bash
|
|
||||||
$ ls -l /dev/input/event*
|
|
||||||
|
|
||||||
crw-rw---- 1 root input 13, 64 Oct 23 23:09 /dev/input/event0
|
|
||||||
crw-rw---- 1 root input 13, 65 Oct 23 23:09 /dev/input/event1
|
|
||||||
crw-rw---- 1 root input 13, 66 Oct 23 23:09 /dev/input/event2
|
|
||||||
crw-rw---- 1 root input 13, 67 Oct 23 23:09 /dev/input/event3
|
|
||||||
```
|
|
||||||
|
|
||||||
2. Check the fourth column (e.g. `input`) then run:
|
|
||||||
```bash
|
|
||||||
sudo gpasswd -a $USER input
|
|
||||||
```
|
|
||||||
> Note: Don't forget to input your `sudo` password!
|
|
||||||
|
|
||||||
3. ***Important***: Log out / Log back in
|
|
||||||
|
|
||||||
## Configurations
|
## Configurations
|
||||||
The configuration file is located at `~/.config/comfortable-swipe.conf`.
|
The configuration file is located at `/usr/local/share/comfortable-swipe.conf`.
|
||||||
Make sure to run `comfortable-swipe restart` after making changes.
|
Run `sudo systemctl restart comfortable-swipe.service` after making changes.
|
||||||
|
|
||||||
Property | Description | Default Value | Default Behavior
|
Property | Description | Default Value | Default Behavior
|
||||||
--------- | ----------- | -------------- | -----
|
--------- | ----------- | -------------- | -----
|
||||||
@ -79,7 +43,11 @@ down3 | 3-finger swipe down | ctrl+shift+Down | switch to above workspace
|
|||||||
down4 | 4-finger swipe down | ctrl+alt+shift+Up | move window to above workpace
|
down4 | 4-finger swipe down | ctrl+alt+shift+Up | move window to above workpace
|
||||||
|
|
||||||
## Uninstall
|
## Uninstall
|
||||||
Download the `uninstall` script then run `bash uninstall`
|
Clone the repository then run `bash uninstall`.
|
||||||
|
|
||||||
## Bug Reports
|
## Bug Reports
|
||||||
Create an issue [here](https://github.com/Hikari9/comfortable-swipe-ubuntu/issues/new) to report a bug.
|
Create an issue [here](https://github.com/Hikari9/comfortable-swipe-ubuntu/issues/new) to report a bug. Please make sure
|
||||||
|
to add the following to your issue:
|
||||||
|
|
||||||
|
1. Content of `.log` (found in the cloned folder)
|
||||||
|
2. Output of `sudo systemctl status comfortable-swipe.service`
|
||||||
|
|||||||
69
install
69
install
@ -1,20 +1,33 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
# prefer running as root
|
||||||
|
if [ $(id -u) != "0" ]; then
|
||||||
|
sudo bash "$0" "$@"
|
||||||
|
exit $?
|
||||||
|
fi
|
||||||
|
echo "Install $(date)" >> .log
|
||||||
DIR=$(dirname $0)
|
DIR=$(dirname $0)
|
||||||
PROGRAM=/usr/local/bin/comfortable-swipe
|
PROGRAM=/usr/local/bin/comfortable-swipe
|
||||||
|
CONF_PATH=/usr/local/share/comfortable-swipe.conf
|
||||||
|
OLD_CONF_PATH=${XDG_CONFIG_HOME:-$HOME/.config}/comfortable-swipe.conf
|
||||||
|
DCONF_PATH=$DIR/src/defaults.conf
|
||||||
|
|
||||||
if [ -x "$(command -v $PROGRAM)" ]; then
|
if [ -x "$(command -v $PROGRAM)" ]; then
|
||||||
# stop any running comfortable-swipe if it exists
|
# stop any running comfortable-swipe if it exists
|
||||||
$PROGRAM stop
|
systemctl stop comfortable-swipe.service >> .log 2>> .log
|
||||||
# remove existing comfortable-swipe
|
|
||||||
rm $(which comfortable-swipe)
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#copy config file
|
mkdir -p $(dirname $CONF_PATH)
|
||||||
mkdir -p ~/.config
|
|
||||||
DCONF_PATH=$DIR/src/defaults.conf
|
# copy config file
|
||||||
CONF_PATH=${XDG_CONFIG_HOME:-$HOME/.config}/comfortable-swipe.conf
|
|
||||||
if [ ! -f $CONF_PATH ]; then
|
if [ ! -f $CONF_PATH ]; then
|
||||||
cat $DCONF_PATH > $CONF_PATH
|
if [ ! -f $OLD_CONF_PATH ]; then
|
||||||
|
# old config file not found, create from scratch
|
||||||
|
cp -a $DCONF_PATH $(dirname $CONF_PATH) >> .log 2>> .log
|
||||||
|
else
|
||||||
|
# old config file found, move to the new path
|
||||||
|
echo "Configuration copied from $OLD_CONF_PATH to $CONF_PATH"
|
||||||
|
cp -a $OLD_CONF_PATH $(dirname $CONF_PATH) >> .log 2>> .log
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
# config file found, ask user if overwrite
|
# config file found, ask user if overwrite
|
||||||
echo "Old conf file found in $CONF_PATH"
|
echo "Old conf file found in $CONF_PATH"
|
||||||
@ -24,18 +37,44 @@ else
|
|||||||
read -r -p "Conf file will be overwritten. Are you sure? [Y/n] " response
|
read -r -p "Conf file will be overwritten. Are you sure? [Y/n] " response
|
||||||
response=${response,,}
|
response=${response,,}
|
||||||
if [[ "$response" =~ ^(yes|y)$ ]]; then
|
if [[ "$response" =~ ^(yes|y)$ ]]; then
|
||||||
cat $DCONF_PATH > $CONF_PATH
|
cp -a $DCONF_PATH $(dirname $CONF_PATH) >> .log 2>> .log
|
||||||
else
|
else
|
||||||
|
echo "Installation aborted." >> .log
|
||||||
exec echo "Installation aborted."
|
exec echo "Installation aborted."
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# install with g++
|
||||||
echo "Installing..."
|
echo "Installing..."
|
||||||
# mkdir -p ~/.local/bin
|
echo "Running g++" >> .log
|
||||||
g++ -std=c++11 -O2 $DIR/src/comfortable-swipe.cpp -lxdo -o $PROGRAM || exec echo "Installation aborted"
|
g++ -std=c++11 -O2 $DIR/src/comfortable-swipe.cpp -lxdo -o $PROGRAM >> .log 2>> .log || exec echo "Installation aborted"
|
||||||
|
|
||||||
# toggle autostart twice to refresh any changes
|
# add as service
|
||||||
$PROGRAM autostart > /dev/null || exec echo "Installation aborted"
|
SERVICE_PATH="/lib/systemd/system/comfortable-swipe.service"
|
||||||
$PROGRAM autostart > /dev/null || exec echo "Installation aborted"
|
|
||||||
|
|
||||||
echo "Successfully installed. You may now run 'comfortable-swipe start'."
|
echo "[Unit]
|
||||||
|
Description=Comfortable 3 or 4 finger gestures
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Environment=DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY
|
||||||
|
ExecStart=$PROGRAM start
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target" \
|
||||||
|
> $SERVICE_PATH
|
||||||
|
|
||||||
|
# run immediately
|
||||||
|
systemctl daemon-reload >> .log 2>> .log
|
||||||
|
systemctl enable comfortable-swipe.service >> .log 2>> .log
|
||||||
|
systemctl start comfortable-swipe.service >> .log 2>> .log
|
||||||
|
echo "Installation successful" >> .log
|
||||||
|
|
||||||
|
# prvide success message
|
||||||
|
echo ""
|
||||||
|
echo "Successfully installed comfortable-swipe. Try swiping and see if it works."
|
||||||
|
echo "Configuration file is located at $CONF_PATH"
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "[Report bugs to https://github.com/Hikari9/comfortable-swipe-ubuntu/issues/new]"
|
||||||
|
echo ""
|
||||||
|
|||||||
@ -186,15 +186,8 @@ namespace service {
|
|||||||
// get the full path of the .conf file
|
// get the full path of the .conf file
|
||||||
string conf_filename() {
|
string conf_filename() {
|
||||||
static string *filename = NULL;
|
static string *filename = NULL;
|
||||||
if (filename == NULL) {
|
if (filename == NULL)
|
||||||
const char* xdg_config = getenv("XDG_CONFIG_HOME");
|
filename = new string("/usr/local/share/comfortable-swipe.conf");
|
||||||
string config(
|
|
||||||
xdg_config == NULL
|
|
||||||
? string(getenv("HOME")) + "/.config"
|
|
||||||
: xdg_config
|
|
||||||
);
|
|
||||||
filename = new string(config + "/comfortable-swipe.conf");
|
|
||||||
}
|
|
||||||
return *filename;
|
return *filename;
|
||||||
}
|
}
|
||||||
// get the full path of the .desktop file associated
|
// get the full path of the .desktop file associated
|
||||||
@ -268,13 +261,13 @@ namespace service {
|
|||||||
}
|
}
|
||||||
// starts service
|
// starts service
|
||||||
void start() {
|
void start() {
|
||||||
int x = system("stdbuf -oL -eL libinput-debug-events | " PROGRAM " buffer");
|
int x = system("/usr/bin/stdbuf -oL -eL /usr/bin/libinput-debug-events | " PROGRAM " buffer");
|
||||||
}
|
}
|
||||||
// stops service
|
// stops service
|
||||||
void stop() {
|
void stop() {
|
||||||
// kill all comfortable-swipe, except self
|
// kill all comfortable-swipe, except self
|
||||||
char* buffer = new char[20];
|
char* buffer = new char[20];
|
||||||
FILE* pipe = popen("pgrep -f comfortable-swipe", "r");
|
FILE* pipe = popen("/usr/bin/pgrep -f comfortable-swipe", "r");
|
||||||
if (!pipe) throw std::runtime_error("stop command failed");
|
if (!pipe) throw std::runtime_error("stop command failed");
|
||||||
string kill = "kill";
|
string kill = "kill";
|
||||||
while (!feof(pipe)) {
|
while (!feof(pipe)) {
|
||||||
|
|||||||
25
uninstall
25
uninstall
@ -1,7 +1,24 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
if [ $(id -u) != "0" ]; then
|
||||||
|
sudo bash "$0" "$@"
|
||||||
|
exit $?
|
||||||
|
fi
|
||||||
echo "Uninstalling..."
|
echo "Uninstalling..."
|
||||||
rm ${XDG_CONFIG_HOME:-$HOME/.config}/autostart/comfortable-swipe.desktop 2> /dev/null
|
echo "Uninstall $(date)" >> .log
|
||||||
comfortable-swipe stop 2> /dev/null
|
|
||||||
rm $HOME/.local/bin/comfortable-swipe 2> /dev/null # compat
|
# stop service
|
||||||
rm /usr/local/bin/comfortable-swipe 2> /dev/null
|
systemctl stop comfortable-swipe.service >> .log 2>> .log
|
||||||
|
systemctl disable comfortable-swipe.service >> .log 2>> .log
|
||||||
|
|
||||||
|
# remove service
|
||||||
|
SERVICE_PATH="/lib/systemd/system/comfortable-swipe.service"
|
||||||
|
rm $SERVICE_PATH >> .log 2>> .log
|
||||||
|
|
||||||
|
# remove old program
|
||||||
|
OLD_PROGRAM=$HOME/.local/bin/comfortable-swipe
|
||||||
|
rm $OLD_PROGRAM >> .log 2>> .log # compat
|
||||||
|
|
||||||
|
# remove program
|
||||||
|
PROGRAM=/usr/local/bin/comfortable-swipe
|
||||||
|
rm $PROGRAM >> .log 2>> .log
|
||||||
echo "Successfully uninstalled comfortable-swipe"
|
echo "Successfully uninstalled comfortable-swipe"
|
||||||
Loading…
Reference in New Issue
Block a user