Fix awk typo

This commit is contained in:
Dylan Araps 2016-06-24 11:48:18 +10:00
parent c8439c4bf9
commit 95706b101d
1 changed files with 1 additions and 1 deletions

View File

@ -1518,7 +1518,7 @@ getresolution () {
"Linux" | "BSD") "Linux" | "BSD")
if type -p xrandr >/dev/null 2>&1; then if type -p xrandr >/dev/null 2>&1; then
case "$refresh_rate" in case "$refresh_rate" in
"on") resolution="$(xrandr --nograb --current | nawk 'match($0,/[0-9]*\.[0-9]*\*/) {printf $1 " @ " substr($0,RSTART,RLENGTH) "Hz, "}')" ;; "on") resolution="$(xrandr --nograb --current | awk 'match($0,/[0-9]*\.[0-9]*\*/) {printf $1 " @ " substr($0,RSTART,RLENGTH) "Hz, "}')" ;;
"off") resolution="$(xrandr --nograb --current | awk '/\*/ {printf $1 ", "}')" ;; "off") resolution="$(xrandr --nograb --current | awk '/\*/ {printf $1 ", "}')" ;;
esac esac
resolution="${resolution//\*}" resolution="${resolution//\*}"