답변:
Caffeine 을 설치 하여 다음을 수행 할 수 있습니다 .
sudo add-apt-repository ppa:caffeine-developers/ppa
sudo apt-get update
sudo apt-get install caffeine
그런 다음 대시에서 카페인을 검색하여 시작하십시오. 재부팅 후 자동으로 시작됩니다.
이제 카페인은 화면 오른쪽 상단에 표시기를 표시합니다. Caffeine을 활성화하려면 클릭하십시오 (PC가 절전 모드로 전환되지 않음). 다시 비활성화하면 Ubuntu가 일반적인 절전 스키마를 따릅니다.
원하는 경우 절전 모드를 영구적으로 비활성화 할 수도 있습니다.
System Settings
Brightness & Lock
Turn screen off when inactive for
선택Never
#!/bin/bash
# Cleanup any bad state we left behind if the user exited while flash was
# running
gconftool-2 -s /apps/gnome-screensaver/idle_activation_enabled --type bool true
we_turned_it_off=0
while true; do
sleep 60
flash_on=0
for pid in `pgrep firefox` ; do
if grep libflashplayer /proc/$pid/maps > /dev/null ; then
flash_on=1
fi
ss_on=`gconftool-2 -g /apps/gnome-screensaver/idle_activation_enabled`
if [ "$flash_on" = "1" ] && [ "$ss_on" = "true" ]; then
gconftool-2 -s /apps/gnome-screensaver/idle_activation_enabled \
--type bool false
we_turned_it_off=1
elif [ "$flash_on" = "0" ] && [ "$ss_on" = "false" ] \
&& [ "$we_turned_it_off" = "1" ]; then
gconftool-2 -s /apps/gnome-screensaver/idle_activation_enabled \
--type bool true
we_turned_it_off=0
fi
done
done
.sh 파일로 저장하고 세션 및 시작에이 파일을 추가하십시오.