all repos — nixfiles @ 54c18184114b266cec0966b663e12e60c52ed985

System and user configuration, managed by nix and home-manager

autorandr/.config/autorandr/postswitch (view raw)

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=120
    nmcli radio all off
    ;;
esac

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

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