pada lubuntu 13.10 terdapat error pada tombol printscreen untuk mengatasinya yang dapat anda lakukan
install scrot
apt-get install scrot
buat folder scrot
mkdir /home/bim/scrot/
rubah default command pada openbox
nano ~/.config/openbox/lubuntu-rc.xml
cari skrip ini (mengatur tombol alt+printscrn)
<!-- Take a screenshot of the current window with scrot when Alt+<b>Print</b> are pressed -->
<keybind key="A-<b>Print</b>">
<action name="Execute">
<command>lxsession-default screenshot window</command>
</action>
</keybind>
pada opsi
<command>lxsession-default screenshot window</command>
ubah
<command> scrot -u -b '%Y-%m-%d-%H:%m:%S_$wx$h.png' -e 'mv $f ~/shots/' </command>
dan skrip ini (mengatur tombol printscrn)
<!-- Launch scrot when <b>Print</b> is pressed -->
<keybind key="<b>Print</b>">
<action name="Execute">
<command>lxsession-default screenshot</command>
</action>
</keybind>
pada opsi
<command>lxsession-default screenshot</command>
ubah
<command> scrot '%Y-%m-%d-%H:%m:%S_$wx$h.png' -e 'mv $f ~/shots/' </command>
konfigurasi ulang dengan memanggil
sudo openbox --reconfigure
selamat print screen anda akan langsung menjadi image dan disimpan difolder shots
referensi :
- http://askubuntu.com/questions/252281/how-do-i-take-screenshots-with-a-delay
- http://ubuntuforums.org/showthread.php?t=2185294
semoga berguna 🙂

