summaryrefslogtreecommitdiff
path: root/addons/x11infoscreen/usr/local/bin/pickx86config
blob: 52dbdc9a2290ea05d5fd444b93a5b1d8f2e131e8 (plain)
  1. #!/bin/sh
  2. # FIXME: Why won't this work?
  3. #cfgmaybe=`lspci | perl -n -e 's¡^.* VGA .*:\W(\w*).*¡/etc/X11/XF86Config-4-$1¡i && print if -f'`
  4. cfgbase="/etc/X11/XF86Config-4"
  5. cfgmaybe="$cfgbase-`lspci | perl -n -e 's¡^.* VGA .*:\W(\w*).*¡$1¡i && print'`"
  6. if [ -r "$cfgmaybe" ]; then
  7. echo "$cfgmaybe"
  8. else
  9. echo "$cfgbase"
  10. fi