"Mons is a Shell script to quickly manage 2-monitors display using xrandr."
- No requirement: POSIX-compliant (minimal: xorg-xrandr)
- Useful: Perfectly fit for laptops, quick and daily use
- Well known: Laptop mode, projector mode, duplicate, mirror and extend
- More: Select one or two monitors over several others
- Extra: Cycle through every mode with only one shortcut
- Auto: Daemon mode to automatically reset display
- Package (AUR)
$ pacaur -S mons
- Package (FreeBSD)
# pkg install mons
- Manual
$ git clone --recursive https://github.com/Ventto/mons.git
$ cd mons
$ sudo make install
Note:
--recursive
is needed for git submodule
Without argument, it prints connected monitors list with their names and ids.
Options are exclusive and can be used in conjunction with extra options.
Information:
-h Prints this help and exits.
-v Prints version and exits.
Two monitors:
-o Primary monitor only.
-s Second monitor only.
-d Duplicates the primary monitor.
-m Mirrors the primary monitor.
-e <side>
Extends the primary monitor to the selected side
[ top | left | right | bottom ].
-n <side>
This mode selects the previous ones, one after another. The argument
sets the side for the extend mode.
More monitors:
-O <mon>
Only enables the monitor with a specified id.
-S <mon1>,<mon2>:<pos>
Only enables two monitors with specified ids. The specified position
places the second monitor on the right (R) or at the top (T).
Daemon mode:
-a Performs an automatic display if it detects only one monitor.
-x <script>
Must be used in conjunction with the -a option. Every time the number
of connected monitors changes, mons calls the given script with the
MONS_NUMBER environment variable.
Extra (in-conjunction or alone):
--dpi <dpi>
Set the DPI, a strictly positive value within the range [0 ; 27432].
--primary <mon_name>
Select a connected monitor as the primary output. Run the script
without argument to print monitors information, the names are in the
second column between ids and status. The primary monitor is marked
by an asterisk.
Displays monitor list:
$ mons
0: LVDS-1 (enabled)
5: VGA-1
You have an enabled one, you want to extends the second one on the right:
$ mons -e right
You want to only display the second one:
$ mons -s
With the -n
option, go through every 2-mons mode consecutively:
- Primary monitor only
- Second monitor only
- Extend mode whose the side is set with
-n <side>
- Mirror
- Duplicate
This mode is useful if you want to switch to every mode with only one shortcut.
# Now in 'Second monitor mode'
$ mons -n right # -> 'Extend mode'
# Now in 'Extend mode'
$ mons -n right # -> 'Mirror mode'
Displays monitor list:
$ mons
Monitors: 3
Mode: Selection
0:* LVDS-1 (enabled)
1: DP-1 (enabled)
5: VGA-1
You may need to display only the third one:
$ mons -O 5
You may need to display the first and the third one on the right:
$ mons -S 0,5:R
Like above but you want to inverse the placement:
$ mons -S 5,0:R
You might want to switch mode and set the DPI value.
Use the --dpi <dpi>
option in conjunction with all others options.
$ mons [OPTIONS] --dpi <dpi>
You might choose one of your monitors as the main one.
You can use the --primary <mon_name>
option alone or in conjunction with all
others options.
<mon_name>
refers to the monitor name that appears in the list of connected
monitors (ex: LVDS-1
or VGA-1
):
$ mons
Monitors: 3
Mode: Primary
0:* LVDS-1 (enabled)
5: VGA-1
The *
character means that the monitor is the primary one:
$ mons --primary VGA-1
Monitors: 3
Mode: Primary
0: LVDS-1 (enabled)
5:* VGA-1
This mode is useful for laptops. After unplugging all monitors except the last one, mons's "daemon" mode will reset the display and enable the latter.
Use case: "I connect a monitor to my laptop and I only want to work with that one, so I disable the native one. After a while, I will unplug the additional monitor and I need reset my display to re-activate the native one."
- Run it as following:
$ nohup mons -a > /dev/null 2>&1 & (all shells)
$ mons -a &! (zsh)
$ mons -a &; disown (bash)
- You can handle N-monitors on your own by using the
-x
option. mons will export the${MONS_NUMBER}
environment variable and run the given Shell script everytime the number of connected monitors changes:
$ mons -a -x "<path>/generic-handler.sh"
# Use it as configuration profiles:
$ mons -a -x "<path>/home-profile.sh"
$ mons -a -x "<path>/work-profile.sh"
- Example of
script.sh
:
#!/bin/sh
case ${MONS_NUMBER} in
1)
mons -o
feh --no-fehbg --bg-fill "${HOME}/wallpapers/a.jpg"
;;
2)
mons -e top
feh --no-fehbg --bg-fill "${HOME}/wallpapers/a.jpg" \
--bg-fill "${HOME}/wallpapers/b.jpg"
;;
*)
# Handle it manually
;;
esac