LINUX.ORG.RU

История изменений

Исправление dhameoelin, (текущая версия) :

Как-то так:

while true
do
    size=$(xrandr | sed '3!d' | cut -c4-12)

    if [[ "$size2" != "$size" ]]; then
       xrandr --output Virtual-1 --mode $size
       size2=$(xrandr | sed '3!d' | cut -c4-12)
    else
       sleep 1s
    fi
done
Гм, так лучше будет

Исправление dhameoelin, :

Как-то так:

while true
do
    size=$(xrandr | sed '3!d' | cut -c4-12)

    if [[ "$size2" != "$size" ]]; then
       xrandr --output Virtual-1 --mode $size
    else
       sleep 1s
    fi

    size2=$(xrandr | sed '3!d' | cut -c4-12)
done

Исходная версия dhameoelin, :

Как-то так:

while true
do
    size=$(xrandr | sed '3!d' | cut -c4-12)
      if [[ "$size2" != "$size" ]]; then
         xrandr --output Virtual-1 --mode $size
      else
         sleep 1s
      fi
    size2=$(xrandr | sed '3!d' | cut -c4-12)
done