]> git.donarmstrong.com Git - deb_pkgs/autorandr.git/blob - README.md
autorandr is in pypi now
[deb_pkgs/autorandr.git] / README.md
1 # autorandr 
2 Automatically select a display configuration based on connected devices
3
4 ## Branch information
5
6 This is a compatible Python rewrite of
7 [wertarbyte/autorandr](https://github.com/wertarbyte/autorandr).
8
9 The original [wertarbyte/autorandr](https://github.com/wertarbyte/autorandr)
10 tree is unmaintained, with lots of open pull requests and issues. I forked it
11 and merged what I thought were the most important changes. If you are searching
12 for that version, see the [`legacy` branch](https://github.com/phillipberndt/autorandr/tree/legacy).
13 Note that the Python version is better suited for non-standard configurations,
14 like if you use `--transform` or `--reflect`. If you use `auto-disper`, you
15 have to use the bash version, as there is no disper support in the Python
16 version (yet). Both versions use a compatible configuration file format, so
17 you can, to some extent, switch between them.  I will maintain the `legacy`
18 branch until @wertarbyte finds the time to maintain his branch again.
19
20 If you are interested in why there are two versions around, see
21 [#7](https://github.com/phillipberndt/autorandr/issues/7),
22 [#8](https://github.com/phillipberndt/autorandr/issues/8) and
23 especially
24 [#12](https://github.com/phillipberndt/autorandr/issues/12)
25 if you are unhappy with this version and would like to contibute to the bash
26 version.
27
28 ## License information and authors
29
30 autorandr is available under the terms of the GNU General Public License
31 (version 3).
32
33 Contributors to this version of autorandr are:
34
35 * Alexander Wirt
36 * Chris Dunder
37 * Daniel Hahler
38 * Maciej Sitarz
39 * Mathias Svensson
40 * Matthew R Johnson
41 * Nazar Mokrynskyi
42 * Phillip Berndt
43 * Rasmus Wriedt Larsen
44 * Stefan Tomanek
45 * Timo Bingmann
46 * Tomasz Bogdal
47 * Victor Häggqvist
48 * stormc
49 * tachylatus
50 * andersonjacob
51 * Simon Wydooghe
52
53 ## Installation/removal
54 You can use the `autorandr.py` script as a stand-alone binary. If you'd like to
55 install it as a system-wide application, there is a Makefile included that also
56 places some configuration files in appropriate directories such that autorandr
57 is invoked automatically when a monitor is connected or removed, the system
58 wakes up from suspend, or a user logs into an X11 session.
59
60 For Debian-based distributions (including Ubuntu) it is recommended to call
61 `make deb` to obtain a package that can be installed and removed with `dpkg`.
62
63 On Arch Linux, there is [an aur package
64 available](https://aur.archlinux.org/packages/autorandr-git/).
65
66 On other distributions you can install autorandr by calling `make install` and
67 remove it by calling `make uninstall`. Run `make` without arguments to obtain a
68 list of what exactly will be installed.
69
70 We appreciate packaging scripts for other distributions, please file a pull
71 request if you write one.
72
73 If you prefer `pip` over your package manager, you can install autorandr with:
74
75     sudo pip install "git+http://github.com/phillipberndt/autorandr#egg=autorandr"
76
77 or simply
78
79         sudo pip install autorandr
80
81 if you prefer to use a stable version.
82
83 Automatically generated packages versions are available from the
84 [openSUSE build service](https://build.opensuse.org/package/show/home:phillipberndt/autorandr).
85
86 ## How to use
87
88 Save your current display configuration and setup with:
89
90     autorandr --save mobile
91
92 Connect an additional display, configure your setup and save it:
93
94     autorandr --save docked
95
96 Now autorandr can detect which hardware setup is active:
97
98     $ autorandr
99       mobile
100       docked (detected)
101
102 To automatically reload your setup, just append `--change` to the command line
103
104 To manually load a profile, you can use the `--load <profile>` option.
105
106 autorandr tries to avoid reloading an identical configuration. To force the
107 (re)configuration, apply `--force`.
108
109 To prevent a profile from being loaded, place a script call _block_ in its
110 directory. The script is evaluated before the screen setup is inspected, and
111 in case of it returning a value of 0 the profile is skipped. This can be used
112 to query the status of a docking station you are about to leave.
113
114 If no suitable profile can be identified, the current configuration is kept.
115 To change this behaviour and switch to a fallback configuration, specify
116 `--default <profile>`. The system-wide installation of autorandr by default
117 calls autorandr with a parameter `--default default`. There are three special,
118 virtual configurations called `horizontal`, `vertical` and `common`. They
119 automatically generate a configuration that incorporates all screens
120 connected to the computer. You can symlink `default` to one of these
121 names in your configuration directory to have autorandr use any of them
122 as the default configuration without you having to change the system-wide
123 configuration.
124
125 Another script called `postswitch` can be placed in the directory
126 `~/.config/autorandr` (or `~/.autorandr` if you have an old installation) as
127 well as in all profile directories: The scripts are executed after a mode
128 switch has taken place and can notify window managers or other applications
129 about it. The same holds for `preswitch`, which is executed before the switch
130 takes place, and `postsave`, which is executed after a profile was
131 stored/altered.
132
133 If you experience issues with xrandr being executed too early after connecting
134 a new monitor, then you can create a script `predetect`, which will be executed
135 before autorandr attempts to run xrandr. Place e.g. `sleep 1` into that file
136 to make autorandr wait a second before running xrandr.
137
138 All scripts can also be placed in any of the `$XDG_CONFIG_DIRS`. In addition to
139 the script names themselves, any executables in subdirectories named
140 `script_name.d` (e.g. `postswitch.d`) are executed as well. In scripts, some of
141 autorandr's state is exposed as environment variables prefixed with `AUTORANDR_`.
142 The most useful one is `$AUTORANDR_CURRENT_PROFILE`.
143
144 ## Changelog
145
146 * *2017-07-16* Skip `--panning` unless it is required (See #72)
147
148 **autorandr 1.1**
149
150 * *2017-06-07* Call systemctl with `--no-block` from udev rule (See #61)
151 * *2017-01-20* New script hook, `predetect`
152 * *2017-01-18* Accept comments (lines starting with `#`) in config/setup files
153
154 **autorandr 1.0**
155
156 * *2016-12-07* Tag the current code as version 1.0.0; see github issue #54
157 * *2016-10-03* Install a desktop file to `/etc/xdg/autostart` by default