SDLMAME e SDLMESS : binários para Linux AMD64
Tuesday, March 24, 2009
Compilados no Kubuntu 8.04 AMD64. Extraia e divirta-se.
SDLMAME v0.130u1
SDLMESS v0.130
Compilados no Kubuntu 8.04 AMD64. Extraia e divirta-se.
SDLMAME v0.130u1
SDLMESS v0.130
Compiled on Kubuntu 8.04 AMD64. Just extract them and enjoy.
SDLMAME v0.130u1
SDLMESS v0.130
One problem that have always bothered me on Linux is the screensaver starting up when you really don't want it. This happens for example when you're watching a movie, or playing a game exclusively on joystick.
This happens because of a combination of two reasons:
1) Both KDE and GNOME do not monitor joystick activity to keep the screensaver from activating. This has been reported as a BUG in Ubuntu.
2) Some applications do not block the startup of the screensaver (RealPlayer, SDLMAME, SDLMESS, games in wine ...)
Well, there is a solution that works very well on my Kubuntu. I have created two small scripts, one to turn off screensaver, and another one to turn it back on:
screensaver-off
| #!/bin/bash xset s off -dpms dcop kdesktop KScreensaverIface enable false |
| #!/bin/bash xset s on +dpms dcop kdesktop KScreensaverIface enable true |
Um dos problemas que sempre encontrei no Linux é o screensaver acionando sem você querer. Isso acontece por exemplo quando você está assistindo um filme, ou jogando um jogo exclusivamente no joystick.
Isto acontece por uma combinação de duas razões:
1) Tanto o KDE quanto o GNOME não monitoram a atividade do joystick para impedir o acionamento do screensaver. Isto já foi reportado como BUG no Ubuntu.
2) Alguns aplicativos não bloqueiam a inicialização do screensaver (RealPlayer, SDLMAME, SDLMESS, jogos no wine...)
Bem, existe uma solução que funciona muito bem no meu Kubuntu. Criei dois pequenos scripts, um para ligar e outro para desligar o screensaver:
screensaver-off
| #!/bin/bash xset s off -dpms dcop kdesktop KScreensaverIface enable false |
| #!/bin/bash xset s on +dpms dcop kdesktop KScreensaverIface enable true |