Gdy jestem nieaktywny przez 4-5 minut, ekran jest automatycznie przyciemniany. To jest zbyt nudne, kiedy oglądam film. Jak wyłączyć tę rzecz?
Gdy jestem nieaktywny przez 4-5 minut, ekran jest automatycznie przyciemniany. To jest zbyt nudne, kiedy oglądam film. Jak wyłączyć tę rzecz?
Odpowiedzi:
Aby to zrobić, możesz zainstalować kofeinę :
sudo add-apt-repository ppa:caffeine-developers/ppa
sudo apt-get update
sudo apt-get install caffeine
Następnie wyszukaj kofeinę w Dash, aby ją uruchomić. Powinien zostać uruchomiony automatycznie po ponownym uruchomieniu.
Teraz Kofeina pokaże wskaźnik w prawym górnym rogu ekranu. Kliknij na nią, aby włączyć kofeinę (komputer nie chce teraz iść spać). Kliknij ponownie, aby go wyłączyć, a Ubuntu zastosuje się do zwykłego schematu snu.
Możesz również wyłączyć sen na stałe, jeśli wolisz.
System Settings
Brightness & Lock
Turn screen off when inactive for
wybierzNever
#!/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
zapisz go jako plik .sh i dodaj ten plik do sesji i uruchamiania