• Stars
    star
    629
  • Rank 71,454 (Top 2 %)
  • Language
    Shell
  • License
    MIT License
  • Created over 8 years ago
  • Updated 8 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

POSIX Shell script to quickly manage monitors on X

Mons

License Language (XRandR) Vote for mons Donate

"Mons is a Shell script to quickly manage 2-monitors display using xrandr."

Perks

  • 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

Installation

  • 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

Usage

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.

Examples

Two monitors

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:

  1. Primary monitor only
  2. Second monitor only
  3. Extend mode whose the side is set with -n <side>
  4. Mirror
  5. Duplicate

This mode is useful if you want to switch to every mode with only one shortcut.

alt 2-monitors modes

# Now in 'Second monitor mode'
$ mons -n right # -> 'Extend mode'
# Now in 'Extend mode'
$ mons -n right # -> 'Mirror mode'

Three monitors (selection 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

DPI value

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>

Primary monitor

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

Daemon mode

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

More Repositories

1

pug

Automatically Gist-synchronises Pacman & AUR installed package lists.
Shell
100
star
2

batify

Only one udevrule file triggering plug and critical battery level notifications (multi-x sessions support)
Makefile
74
star
3

lux

POSIX Shell script to easily control brightness on backlight-controllers.
Shell
58
star
4

xpub

POSIX Shell script to get user's display environment variables of any TTY from anywhere.
Shell
40
star
5

pearlfan

GNU/Linux kernel driver and libusb app for a Pearl's USB LED fan
C
25
star
6

libshlist

POSIX Shell List Implementation.
Shell
10
star
7

odocxmerge

GNU/Linux tool to merge two docx/word files into one using Open-XML-SDK and Mono.
C#
4
star
8

arch

Modest Arch Linux installing Shell script (EFI, LUKS upper LVM) 🚀
Shell
4
star
9

bisk

POSIX Shell script to backup MBR, GPT and data partitions (including logical ones)
Shell
3
star
10

i3bar-coins

Show crypto-currencies values in i3bar, in fiat-moneys (dollars, euros and so on)
Shell
3
star
11

lsdblk

POSIX Shell script to list the data block devices from a given one
Shell
3
star
12

odocxtpl

Simple tool to generate a word document from .docx template and YAML variables (using py-docx-tpl)
Python
2
star
13

shun

Tool to print Shellcheck statistics from a Git repository
Shell
2
star
14

winbroom

Windows 7+ Customization experiences.
Batchfile
2
star
15

libgpio

Bash library to manage Linux Kernel GPIO chips through a sysfs user interface
Shell
2
star
16

tcpu

Tiny CPU usage POSIX shell script
Shell
1
star
17

freertos-stm32

FreeRTOS project on STM32F4 Discovery using sensors.
C
1
star
18

kakeup

Start Kodi on a running platform with Kore
Python
1
star
19

jenkins-aosp-project

Jenkins pipeline for AOSP
Groovy
1
star