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
|
# Docklike Taskbar for Xfce
A modern, minimalist taskbar for Xfce
Docklike Taskbar behaves similarly to many other desktop environments and operating systems. Wherein all application windows are grouped together as an icon and can be pinned to act as a launcher when the application is not running. Commonly referred to as a dock.
For usage instructions, keyboard shortcuts, and screenshots, see:
<https://docs.xfce.org/panel-plugins/xfce4-docklike-plugin/start>.
## Build & Install
```bash
tar xvf xfce4-docklike-plugin-<version>.tar.xz && cd xfce4-docklike-plugin-<version>
meson setup build
meson compile -C build
sudo meson install -C build
```
### From git
```bash
git clone https://gitlab.xfce.org/panel-plugins/xfce4-docklike-plugin.git && cd xfce4-docklike-plugin
meson setup build
meson compile -C build
sudo meson install -C build
```
### Uninstallation
```bash
sudo ninja uninstall -C build
```
## Reporting bugs
To assist with troubleshooting plugin issues, please run Xfce Panel in debugging mode, and include the relevant output in issues.
<https://gitlab.xfce.org/panel-plugins/xfce4-docklike-plugin/-/issues>
### Running Xfce Panel in debugging mode
- Open a terminal
- Quit the Xfce Panel using `xfce4-panel -q`
- Start the panel in debugging mode with `G_MESSAGES_PREFIXED= G_MESSAGES_DEBUG=xfce4-docklike-plugin xfce4-panel`
- Perform any actions you want to debug and copy the relevant output
- Stop debugging by pressing `Ctrl^C`
- Start the panel again using `xfce4-panel &`
The Xfce wiki has more details on panel debugging:
<https://docs.xfce.org/xfce/xfce4-panel/debugging>.
|