#!/bin/sh DPI=96 case $AUTORANDR_CURRENT_PROFILE in ("laptop") DPI=144 ;; ("docked") DPI=109 ;; esac xrandr --dpi $DPI emacsclient -e "(setq display-pixels-per-inch $DPI)" > /dev/null i3-msg restart notify-send --expire-time=5000 "Display profile: '$AUTORANDR_CURRENT_PROFILE'"