8a6ca865a2
The notes plugin for Xfce panel provides you a quick way to write down a todo list, to paste a piece of code, to leave a note to your friend, or whatever else you had like to do with a Post-It note. URL: https://gitlab.xfce.org/panel-plugins/xfce4-notes-plugin Signed-off-by: Michal Cieslakiewicz <michal.cieslakiewicz@wp.pl>
8 lines
366 B
Bash
Executable File
8 lines
366 B
Bash
Executable File
#!/bin/bash
|
|
SRC=xfce4-notes-plugin
|
|
git clone -b master https://gitlab.xfce.org/panel-plugins/${SRC}.git $SRC
|
|
VERSION=$(cd $SRC && git describe --tags --dirty | rev | cut -d- -f1-3 | rev | sed -e 's/v//' -e 's/-/_/g')
|
|
mv $SRC ${SRC}-${VERSION}
|
|
tar cf - ${SRC}-${VERSION} | xz -c9 > ${SRC}-${VERSION}.tar.xz
|
|
[ -s ${SRC}-${VERSION}.tar.xz ] && rm -rf ${SRC}-${VERSION}
|