Skip to content

Commit

Permalink
mark 1.3.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tildearrow committed Mar 27, 2019
1 parent 023c05f commit 59cd589
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 14 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ uinput based key bindings and macros tool for Linux.

# installation

## Arch Linux

[AUR](https://aur.archlinux.org/packages/input-modifier/).

## universal installer

download the installer from [here](https://github.com/tildearrow/input-modifier/releases) (select the first element from "Assets").

extract release:

```
Expand All @@ -23,6 +31,8 @@ add yourself to the `input` group if not done previously:
sudo usermod -a -G input $USER
```

and then re-login.

# running

run imodd:
Expand All @@ -37,8 +47,6 @@ documentation can be found [here](doc/README.md).

# to-do

this is pretty much unusable in a *real crazy* environment as of now, but otherwise it works.

- X11 integration (per-application profile bind, warping cursor and the like).

- bug fixes.
Expand Down
4 changes: 2 additions & 2 deletions doc/basic/devices.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ this is done by using a little utility called `imod-cli`, which is a command-lin

(don't worry, a GUI will come at some point)

to open up the utility, open a terminal, go to the input-modifier/bin directory and type the following:
to open up the utility, open a terminal and type the following:

```
./imod-cli
imod-cli
```

if you've done this correctly, you should be at the input-modifier prompt:
Expand Down
14 changes: 10 additions & 4 deletions doc/basic/installation.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# installation
# installation (distro-specific)

## Arch Linux

install [input-modifier](https://aur.archlinux.org/packages/input-modifier/). from the AUR (either manually or with your favorite helper).

# installation (universal installer)

after downloading input-modifier, please follow these instructions for a proper install.

Expand Down Expand Up @@ -37,11 +43,11 @@ you can add yourself to that group by typing the following:
sudo usermod -a -G input $USER
```

after this, you're ready to go. see [startup](startup.md).
after this, you'll have to re-login before being able to use input-modifier, since new groups don't apply until you do this.

## why not a package?
under special circumstances, a reboot may be necessary.

don't worry, this will eventually happen.
after this, you're ready to go. see [startup](startup.md).

## what about an AppImage?

Expand Down
5 changes: 2 additions & 3 deletions doc/basic/startup.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@ congratulations on installing input-modifier. here you will learn how to use it.

## start the daemon

after you've extracted input-modifier, run the following:
after you've installed input-modifier, run the following:

```
cd input-modifier/bin
./imodd
imodd
```

this will start the input-modifier daemon. if it fails, make sure you have installed it correctly. if that is the case, you may want to report an issue and I'll be glad to fix it as soon as you do.
Expand Down
1 change: 1 addition & 0 deletions doc/reference/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
input-modifier reference.

[command reference](command/README.md)
[internals](internal/README.md)
2 changes: 1 addition & 1 deletion src/daemon/imodd.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ typedef std::string string;

#define logLevel 2

#define IMOD_VERSION "1.3.1"
#define IMOD_VERSION "1.3.2"

int imLogD(const char* format, ...);
int imLogI(const char* format, ...);
Expand Down
5 changes: 3 additions & 2 deletions src/installer/install
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ if [[ $RESPONSE =~ ^[yY].* ]]
then echo "however, you will have to reboot before using input-modifier"
echo "because we couldn't do some stuff required for it to work immediately."
fi
echo "add yourself to the input group in order to be able to use the program:"
echo "sudo usermod -a -G input <username>"
echo "add yourself to the input group:"
echo "$ sudo usermod -a -G input <username>"
echo "then re-login (logout, then login) in order to be able to use the program."
fi

0 comments on commit 59cd589

Please sign in to comment.