nsz32 / docklike-plugin

A Dock-like Taskbar Plugin for XFCE
GNU General Public License v3.0
326 stars 42 forks source link

bring docklike-plugin to debian repository #56

Open freddii opened 3 years ago

freddii commented 3 years ago

Are there any plans to bring docklike-plugin to the debian repo in future?

It would be nice to be able to install it with simply running:

sudo apt-get install xfce4-docklike-plugin  #(like it is possible with xfce4-whiskermenu-plugin)

development of xfce-panel-plugins seam to be at gitlab: https://gitlab.xfce.org/groups/panel-plugins

nsz32 commented 3 years ago

Yes, we should at good time join the official repository : we are not 100% ready yet, some bugs ... Also, for the translation credits (you contributed DE), please see my last message @ #55

Unit193 commented 3 years ago

Howdy,

If anyone is actually interested in doing this, I'm the one that packaged it in the Xubuntu PPA so can either help, or get you started out. Feel free to reach out, I'm specifically quick to answer if you happen to use IRC.

~Unit 193

SwampRabbit commented 3 years ago

Agree that this should be proposed as an official Xfce core panel component on their GitLab, that's the only way for this to have good longevity, and also ensures all distros can benefit from it.

The Debianization of docklike-plugin isn't the issue, was debianized back when it was nmt-plugin, its getting some dedicated and skilled contributors in my opinion to take the load off Nico.

Nico said in another issue that his time was limited, so really no better way than have the Xfce team help, or whats going to happen is each of us will continue to splinter fork it and package it for our own distros until it slowly dies off.

philipzae commented 3 years ago

The Xfce devs are okay with moving to gitlab, as opened in this issue by the Thunar dev. https://github.com/davekeogh/xfce4-docklike-plugin/issues/16

freddii commented 2 years ago

seams that docklike plugin is now an official part of xfce: https://gitlab.xfce.org/panel-plugins/xfce4-docklike-plugin

but i can't find it in debian repo yet. https://packages.debian.org/search?searchon=names&keywords=+xfce4-

freddii commented 2 years ago

this script is working for me:

`#!/bin/bash

to run this script go into the folder where it is then run: ./install_xfce-docklike-plugin.sh

# set -eu # folder_name="xfce-docklike-plugin" # sudo apt install libxfce4panel-2.0-dev libwnck-3-dev xfce4-dev-tools libxfce4ui-2-dev -y # if [ -d "/home/$USER/programs_setup/$folder_name" ]; then cd /home/$USER/programs_setup/xfce-docklike-plugin/docklike-plugin sudo make uninstall cd /home/$USER/ sudo rm -rf /home/$USER/programs_setup/xfce-docklike-plugin fi # mkdir -p /home/$USER/programs_setup/xfce-docklike-plugin cd /home/$USER/programs_setup/xfce-docklike-plugin

git clone https://github.com/nsz32/docklike-plugin && cd docklike-plugin

git clone https://gitlab.xfce.org/panel-plugins/xfce4-docklike-plugin.git && cd xfce4-docklike-plugin ./autogen.sh make sudo make install xfce4-panel -r& echo "now rightclick the panel > panel preferences > items >" echo "now add in panel 'Docklike Taskbar' below 'Window Buttons' and remove 'Window Buttons'"`