Skip to content

Instantly share code, notes, and snippets.

@faddat
Created December 27, 2014 10:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save faddat/f12e178ade8cf57b5542 to your computer and use it in GitHub Desktop.
Save faddat/f12e178ade8cf57b5542 to your computer and use it in GitHub Desktop.
Android created Gist
#To start plasma-shell:
#KF5 packages are installed in /opt/kf5, while Qt packages are #installed in /opt/qt-git. Those paths are not exported in PATH, #LD_LIBRARY_PATH or PKG_CONFIG_PATH. You will need to export #those everytime you want to play with KF5. (This way your system #isn't compromised).
export KF5=/opt/kf5
export QTDIR=/opt/qt-git
export XDG_DATA_DIRS=$KF5/share:$XDG_DATA_DIRS
export XDG_CONFIG_DIRS=$KF5/etc/xdg
export PATH=$KF5/bin:$QTDIR/bin:$PATH
export LD_LIBRARY_PATH=$KF5/lib:$QTDIR/lib
export QT_PLUGIN_PATH=$KF5/lib/plugins:$QTDIR/plugins
export QML2_IMPORT_PATH=$KF5/lib/qml:$QTDIR/qml
export XDG_DATA_HOME=$HOME/.local5
export XDG_CONFIG_HOME=$HOME/.config5
export XDG_CACHE_HOME=$HOME/.cache5
kdeinit5
plasma-shell
@faddat
Copy link
Author

faddat commented Dec 27, 2014

This will start a kf5 environment after you install the kf5 repo on clean arch.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment