citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

chrome (157B)


      1 #!/usr/bin/env bash
      2 
      3 OPTS=""
      4 HOST="$(hostname)"
      5 
      6 if [ "$HOST" == "quiver" ]; then
      7     OPTS="--force-device-scale-factor=1.25"
      8 fi
      9 
     10 exec chromium "$OPTS" "$@"