# HG changeset patch # User Hans-Günter Theisgen # Date 1731507367 -3600 # Node ID 6cf6658948a5baaa77c4d8d0231ceb67022f5405 # Parent a0294319a84f604e2a5cf13687bf2112672d988c created recipe for wm-switcher diff -r a0294319a84f -r 6cf6658948a5 wm-switcher/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wm-switcher/description.txt Wed Nov 13 15:16:07 2024 +0100 @@ -0,0 +1,6 @@ +Switch between window managers: +- metacity +- xfwm4 +- compiz +- openbox +with or without Compton compositor diff -r a0294319a84f -r 6cf6658948a5 wm-switcher/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wm-switcher/receipt Wed Nov 13 15:16:07 2024 +0100 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="wm-switcher" +VERSION="1.03" +CATEGORY="utilities" +TAGS="window" +SHORT_DESC="Simple GUI to switch window managers in Linux with minimal dependencies." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL3" +WEB_SITE="https://github.com/xircon/wm-switcher/" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="${WEB_SITE}archive/refs/tags/v$VERSION.tar.gz" + +SUGGESTED="compton" +DEPENDS="PyQt-x11-gpl sip-pyqt" + +HOST_ARCH="i486 arm" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + mkdir -p $fs/usr/share/applications + + cp -a $src/wm.py \ + $fs/usr/bin/wm-switcher + chmod a+x,g-w $fs/usr/bin/wm-switcher + cp -a $src/wm-switcher.desktop \ + $fs/usr/share/applications + chmod g-w $fs/usr/share/applications/wm-switcher.desktop +}