i3-workscreen
i3-workscreen copied to clipboard
In i3wm compatible manner - dynamically re-configures your (multi)-monitor setup on the fly when you hotplug/unplug display cabel(s)
This utility is for users using i3wm on their laptops who frequently jump between multiple (multi-)monitor setups.
For example single display output when you are on road, triple-monitor setup at work and two-monitor setup at home.
i3-workscreen executable provided by this package should be triggered by udev rule which will listen for specific events caused by plugging/unplugging display output cable(s) (eg.: HDMI). The utility will then enable configured display outputs and reassign existing workspaces based on your json configuration.
An example of the udev rule is provided in the root of the git repository and should be EDITED by the user and copied to /etc/udev/rules.d/98-monitor-hotplug.rules on you system.
You may also need to execute i3-workscreen in your .i3/config as the udev event is emitted way too early on a system startup before the X.org server is running.
.. code-block:: bash
exec --no-startup-id "i3-workscreen"
Installation:
.. code-block:: bash
/home/user> pip install git+https://github.com/fogine/i3-workscreen.git
# or
/home/user> pip install i3-workscreen
Dependencies:
i3-msgxrandr(xlib)python 3.5logger(write messages into the system log)
Configuration:
.. code-block:: bash
/home/user> i3-workscreen -h
usage: i3workscreen.py [-h] [--toggle]
Required configuration file is fetched from:
`$HOME/.config/i3-workscreen/config.json`
optional arguments:
-h, --help show this help message and exit
--toggle Toggles between mirrored & extended display mode
The bellow configuration example shows setup of maximum of three monitors. In this case eDP-1 is my laptop screen and HDMI-1 & DP-1 are external monitors.
Four scenarios may happen with the configuration:
-
eDP-1connected,HDMI-1&DP-1disconnectedIn this case all workspaces are assigned to the single screen
-
eDP-1connected,HDMI-1connected,DP-1disconnectedIn this case workspaces 1-5 belong to
eDP-1and workspaces 6-0 belong toHDMI-1 -
eDP-1connected,HDMI-1disconnected,DP-1connectedIn this case workspaces 1-5 belong to
DP-1and workspaces 6-0 belong toeDP-1 -
eDP-1connected,HDMI-1connected,DP-1connectedIn this case workspaces 1-5 belong to
DP-1and workspaces 6-0 belong toHDMI-1.eDP-1was stolen all workspaces by higher priority outputs and becausedisableEmptyOutputs=true,eDP-1display output will be disabled. if the option was set tofalse, the output would be enabled and you could interact with the connected monitor andi3would assign to it firstemptyworkspace (workspace without any windows in it)
.. code-block:: json
{
"disableEmptyOutputs": true,
"outputs": [
{
"name": "eDP-1",
"workspaces": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "0" ]
},
{
"name": "HDMI-1",
"xrandr": ["--above", "eDP-1"],
"workspaces": [ "6", "7", "8", "9", "0" ]
},
{
"name": "DP-1",
"workspaces": ["1", "2", "3", "4", "5"]
}
]
}