Forked from lukaswoj/gist:5714b13802b0f3653c62d72895f31642
Last active
February 17, 2025 20:55
-
-
Save dehidehidehi/b7b4786e18598ba21107647bf61f8965 to your computer and use it in GitHub Desktop.
This file contains 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
# here is how you can build locally kwin-bismuth package that in 3.1.4-4build2 comes broken unfortunately for Kubuntu 24.04 | |
# from main system | |
sudo apt-get install kwin-bismuth | |
git clone https://github.com/Bismuth-Forge/bismuth.git | |
cd bismuth | |
docker run --rm -it --volume `pwd`:/app --workdir /app ubuntu | |
# from inside the container | |
apt-get update | |
apt-get install make cmake ninja-build build-essential extra-cmake-modules qtbase5-private-dev qtdeclarative5-dev libqt5svg5-dev libkf5config-dev libkf5declarative-dev libkf5configwidgets-dev libkf5kcmutils-dev libkdecorations2-dev | |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash | |
source ~/.profile | |
nvm install 20 | |
# fix tsc command | |
npm uninstall tsc | |
npm install -D typescript | |
# apply build command fix | |
sed -i 's/neutral"/neutral" "--target=es2016"/g' src/kwinscript/CMakeLists.txt | |
/bin/rm build -rf || true | |
make build | |
exit | |
# from main system, to replace "broken" file with fixed one | |
sudo sh -c 'cat build/src/kwinscript/bismuth/contents/code/index.mjs > /usr/share/kwin/scripts/bismuth/contents/code/index.mjs' | |
# now enable window tiler and you should have it working with shortcuts also available under "Windo Tiling" section |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment