Created
January 27, 2018 14:59
-
-
Save aspann/be52432ee0fc413d87c4b102ceb8dc78 to your computer and use it in GitHub Desktop.
install/update flatpak (steam)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## setup flatpak | |
| # edit repos-conf | |
| joe /etc/portage/repos.conf/flatpak-overlay.conf | |
| # content | |
| [flatpak-overlay] | |
| priority = 50 | |
| location = /usr/portage/flatpak-overlay | |
| sync-type = git | |
| sync-uri = https://github.com/fosero/flatpak-overlay.git | |
| auto-sync = Yes | |
| # install flatpak | |
| eix-sync -q && emerge flatpak | |
| # as root: | |
| flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo | |
| flatpak install flathub com.valvesoftware.Steam | |
| flatpak install flathub org.freedesktop.Platform.GL.nvidia-390-12 | |
| flatpak install flathub org.freedesktop.Platform.GL32.nvidia-390-12 | |
| ## update flatpak | |
| # as root: | |
| flatpak update | |
| # check the version (390-12, tobe the same as the system drivers) | |
| flatpak install flathub org.freedesktop.Platform.GL.nvidia-390-12 | |
| flatpak install flathub org.freedesktop.Platform.GL32.nvidia-390-12 | |
| # as user: | |
| flatpak update |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment