Romanian accentuated chars in Linux are not always something very simple to achieve. Here is a script which uses the windows key to obtain the accentuated chars:

#!/bin/bash<br></br><br></br>xmodmap -e 'keycode 115 = Mode_switch'<br></br>xmodmap -e 'keycode 38 = a A abreve Abreve'<br></br>xmodmap -e 'keycode 39 = s S scedilla Scedilla'<br></br>xmodmap -e 'keycode 28 = t T tcedilla Tcedilla'<br></br>xmodmap -e 'keycode 31 = i I icircumflex Icircumflex'<br></br>xmodmap -e 'keycode 24 = q Q acircumflex Acircumflex'<br></br><br></br>

The only “un-natural” combination is the windows key + q to obtain acircumflex.