Re: Kaffeine and other aspect ratio problems
heinkel_111: you can put scripts in ~/.kde/Autostart and they will be executed when you log in to KDE.
For example, if the command was "xrandr --output foo", you could put this in a file in .../Autostart:
...and it'd do it for you.
heinkel_111: you can put scripts in ~/.kde/Autostart and they will be executed when you log in to KDE.
For example, if the command was "xrandr --output foo", you could put this in a file in .../Autostart:
Code:
#!/bin/sh xrandr --output foo
Comment