summary refs log tree commit diff stats
path: root/autorandr/.config/autorandr/postswitch
blob: 08ce0679c3e80ee2662bb8ccf1e24158b4627288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
DPI=96
case $AUTORANDR_CURRENT_PROFILE in
  ("laptop")
    DPI=144
    nmcli radio wifi on
    ;;
  ("docked")
    DPI=96
    nmcli radio all off
    ;;
esac

xrandr --dpi $DPI
emacsclient -e "(setq display-pixels-per-inch $DPI)" > /dev/null
systemctl --user restart redshift --no-block
i3-msg restart

notify-send --expire-time=5000 "Display profile: '$AUTORANDR_CURRENT_PROFILE'"