]> git.donarmstrong.com Git - deb_pkgs/autorandr.git/blobdiff - README.md
Skip --panning 0x0 unless required (See #72)
[deb_pkgs/autorandr.git] / README.md
index 070a453f20c500c0e4d763c8657912e2a995de2c..1dd4f9095b8c1802c76b6dec320367f785508737 100644 (file)
--- a/README.md
+++ b/README.md
@@ -70,6 +70,13 @@ list of what exactly will be installed.
 We appreciate packaging scripts for other distributions, please file a pull
 request if you write one.
 
+If you prefer `pip` over your package manager, you can install autorandr with:
+
+    sudo pip install "git+http://github.com/phillipberndt/autorandr#egg=autorandr"
+
+Automatically generated packages versions are available from the
+[openSUSE build service](https://build.opensuse.org/package/show/home:phillipberndt/autorandr).
+
 ## How to use
 
 Save your current display configuration and setup with:
@@ -117,6 +124,11 @@ about it. The same holds for `preswitch`, which is executed before the switch
 takes place, and `postsave`, which is executed after a profile was
 stored/altered.
 
+If you experience issues with xrandr being executed too early after connecting
+a new monitor, then you can create a script `predetect`, which will be executed
+before autorandr attempts to run xrandr. Place e.g. `sleep 1` into that file
+to make autorandr wait a second before running xrandr.
+
 All scripts can also be placed in any of the `$XDG_CONFIG_DIRS`. In addition to
 the script names themselves, any executables in subdirectories named
 `script_name.d` (e.g. `postswitch.d`) are executed as well. In scripts, some of
@@ -125,4 +137,13 @@ The most useful one is `$AUTORANDR_CURRENT_PROFILE`.
 
 ## Changelog
 
+**autorandr 1.1**
+
+* *2017-06-07* Call systemctl with `--no-block` from udev rule (See #61)
+* *2017-01-20* New script hook, `predetect`
+* *2017-01-18* Accept comments (lines starting with `#`) in config/setup files
+
+**autorandr 1.0**
+
+* *2016-12-07* Tag the current code as version 1.0.0; see github issue #54
 * *2016-10-03* Install a desktop file to `/etc/xdg/autostart` by default