nice, GNUser 
Hi hiro. Enjoy!
While I'm here, let me point out two issues I've encountered when playing around with flatpak:
1. /var/local/lib/flatpak/repo: No such file or directorySome flatpaks (e.g., com.google.Chrome) fail like this:
$ flatpak --user run com.google.Chrome
...
error: While opening repository /var/local/lib/flatpak/repo: opening repo: opendir(/var/local/lib/flatpak/repo): No such file or directoryWhen run with the --user flag, flatpak should not be mucking around in /var (its root dir should be $HOME/.local/share/flatpak, not /var/local/lib/flatpak). The solution for this kind of naughty behavior is simple:
$ mkdir -p /var/local/lib; ln -s $HOME/.local/share/flatpak /var/local/lib/flatpak; flatpak --user run com.google.Chrome2. No soundFlatpak requires pulseaudio for sound. If you are an alsa purist like me, your terminal may show errors like this when a flatpak tries to output sound:
ALSA lib ../../pulse/pulse.c:242:(pulse_connect) PulseAudio: Unable to connect: Connection refused
If alsa is properly configured, it is trivial to temporarily use pulseaudio:
$ tce-load -wil pulseaudio; sudo /usr/local/etc/init.d/dbus start; pulseaudio 2>/dev/null & [Edit]: Fixed typo. Changed puseaudio to pulseaudio. Rich