Wednesday, July 4, 2018

Disable middle click paste in Ubuntu 16.04

 Fedora 24 you can install gnome-tweak-tool using the following command:
$ sudo dnf install gnome-tweak-tool
Open gnome-tweak-tool and go to the "Keyboard and Mouse" tab and disable "Middle-click-Paste".

Wednesday, April 4, 2018

Reconfiguring Timidity for different soundfonts

Using FluidR3_GM.sf2 in TiMidity++

by Shelagh Manton

Someone has suggested that TiMidity++ is not up to it when it comes to being a nice midi synth for use with Rosegarden. I investigated ways to improve its sound by using the FluidR3_GM.sf2 soundfont which can be found in the package repositories of many distributions these days. TiMidity++ is ideal for those who do not want to use jackd to set up softsynths such as fluidsynth, QSynth, or the DSSI synth plugins. If you only work in MIDI and have no wish to do audio work maybe the following advice might be your best bet for getting quality sound out of Rosegarden.
You will need admin privileges to do the following. On Red Hat based distros you are not always set up to use sudo, you might have to su to a privileged shell, instead.

First install the soundfont
sudo apt-get install fluid-soundfont-gm fluid-soundfont-gs
or (if you're on a Red Hat based distro)
sudo yum install fluid-soundfont
Other people you're on your own. :-D
You will find it in /usr/share/sounds/sf2/ (Ubuntu, possibly all Debian derivatives)
or
/usr/share/soundfonts/ (Red Hat)
Then open /etc/timidity/timidity.cfg
sudo gedit /etc/timidity/timidity.cfg
There will be a line at the bottom of the config file which reads
source freepats.cfg
replace that with the following
(Ubuntu)
dir /usr/share/sounds/sf2/
soundfont FluidR3_GM.sf2
(Red Hat)
dir /usr/share/soundfonts/
soundfont FluidR3_GM.sf2
save the file…
And then in a terminal do
sudo /etc/init.d/timidity restart
for Ubuntu and friends.
If this fails to work, or for distros other than Ubuntu, you may need to run TiMidity++ manually. It has a complicated set of options, but the only option you need to be concerned with is whether to direct its audio through JACK or directly through ALSA.
If you have JACK running, try using:
timidity -iA -Oj
If not, try this instead:
timidity -iA -Os
(In either case, you always want “-iA” which makes TiMidity++ become an ALSA MIDI client, so it can be used with applications like Rosegarden.)