https://bugs.kde.org/show_bug.cgi?id=436435
Kyle Devir <kyle.de...@mykolab.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|FIXED |NOT A BUG --- Comment #5 from Kyle Devir <kyle.de...@mykolab.com> --- I run my kdesrc-build setup via ``` function run-startplasma-wayland-git() { export XDG_SESSION_TYPE=wayland export GDK_BACKEND=wayland export SDL_VIDEODRIVER=wayland export QT_LOGGING_RULES="kwin_*.debug=true;kwin_libinput.debug=false" mkdir -p ~/.local/share/kwin mv $HOME/.local/share/kwin/session.wayland.log $HOME/.local/share/kwin/session.wayland.log-`date +"%Y%m%d%H%M"` bash /run/media/valmar/DataSSD/kde/kde-env-master-wayland.sh &> ~/.local/share/kwin/session.wayland.log 2>&1 } alias startplasma-wayland-git=run-startplasma-wayland-git ``` Which calls this script: ``` #!/bin/sh KDE_usr_prefix="/run/media/valmar/DataSSD/kde/usr" export CMAKE_PREFIX_PATH="$KDE_usr_prefix:$CMAKE_PREFIX_PATH" export PATH="$KDE_usr_prefix/bin:$PATH" export PKG_CONFIG_PATH="$KDE_usr_prefix/lib/pkgconfig:$PKG_CONFIG_PATH" export PYTHONPATH="$KDE_usr_prefix/lib/site-packages:$PYTHONPATH" export QML2_IMPORT_PATH="$KDE_usr_prefix/lib/qml:$QML2_IMPORT_PATH" export QT_PLUGIN_PATH="$KDE_usr_prefix/lib/qt5/plugins:$KDE_usr_prefix/lib/plugins:$QT_PLUGIN_PATH" export XDG_DATA_DIRS="$KDE_usr_prefix/share:/usr/share:$XDG_DATA_DIRS" export XDG_CONFIG_DIRS="$KDE_usr_prefix/etc/xdg:/etc/xdg:$XDG_CONFIG_DIRS" export MANPATH="$KDE_usr_prefix/share/man:$MANPATH" cd ${KDE_usr_prefix} ${KDE_usr_prefix}/bin/startplasma-wayland ``` -- You are receiving this mail because: You are watching all bug changes.