kotelnik / plasma-applet-active-window-control

Plasma 5 applet for controlling currently active window.
GNU General Public License v2.0
119 stars 18 forks source link

This widget is now part of KDE #148

Open Zren opened 5 years ago

Zren commented 5 years ago

Tag me @Zren if you need want to contact me on any of the GitHub issues. However, this widget is now on the KDE Bugzilla bug tracker:

You can also send Pull Requests as normal diffs via Phabricator.

Install

In order to install the widget, first download the new codebase:

git clone https://github.com/KDE/plasma-active-window-control
cd plasma-active-window-control

TODO: I'll need to figure out the exact build dependencies. For now, something like the following may install most of them. I'll need to test in an fresh KDE Neon install.

sudo apt-get build-dep plasma-pa
sudo apt-get build-dep kwin

Then build it.

mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF -DKDE_INSTALL_USE_QT_SYS_PATHS=ON
make
sudo make install

Update

cd plasma-active-window-control
git pull origin master --ff-only

Then run the build commands in under the install instructions again.

Uninstall

cd plasma-active-window-control
cd build
sudo make uninstall
trmdi commented 5 years ago

@kupiqu See this, Zren uses Neon like you.

kupiqu commented 5 years ago

After following these steps I see no difference. @Zren could you please try to reproduce issue #146? Thank you in advance!