#!/bin/bash # by default OSD output of function keys is disabled because it's too slow # set to yes if you want fancy osd overlayS ENABLE_OSD='no' OSD_FONT='DejaVuSans 36' # lookup the following values by using amixer if they don't work for you VOLUME_LABEL='Line-Out' HEADPHONE_LABEL='Speaker' # these are the switches for xrandr --output VGA when Fn-F5 is used to # select LCD+VGA mode MODE="`xrandr|grep \+|head -n1|awk {'print $1'}`"; RATE="`xrandr|grep \+|head -n1|awk {'print $2'}`"; COMBINED_DISPLAY_SWITCHES="--mode $MODE --refresh $RATE"