1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
# mate-window-applets
Applets for `mate-panel` to show various window controls. The original author delete their GitHub repository, so this in an import from the source uploaded to Debian.
* WindowButtons applet shows the close,minimize,actions in a panel.
* WindowTitle applet shows the title of the active window.
* WindowMenu applet shows you the window menu of the active window.
## Install
On [Ubuntu MATE](https://ubuntu-mate.org) 18.04 or newer:
```
sudo apt install mate-window-buttons-applet mate-window-menu-applet mate-window-title-applet
```
## Compile
### Requirements
* meson
* ninja
* vala
* Gtk3
* Gdk3
* libwnck3
* libmatepanelapplet
To install them in Ubuntu MATE 20.04 or newer, run:
```
sudo apt install meson ninja-build valac libwnck-3-dev libgtk-3-dev libgdk-pixbuf2.0-dev libmate-panel-applet-dev
```
### Build
```
meson --prefix=/usr build
cd build
ninja
sudo ninja install
cd ..
sudo ./install-icons.sh install
sudo glib-compile-schemas /usr/share/glib-2.0/schemas
```
#### Remove
```
cd build
sudo ninja uninstall
cd ..
sudo ./install-icons.sh uninstall
```
### License
* GPLv3
See the [LICENSE](LICENSE) file.
|