From 8c8de75b54aac5585996e1cb80fe72c27a4e8c84 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 2 Apr 2017 14:20:03 +0100 Subject: clean gtkdialog/bash code --- Makefile | 58 ----------------- desktop/sisyphus.desktop | 7 --- desktop/sisyphus.png | Bin 74727 -> 0 bytes icon/appcleanup.svg | 65 ------------------- icon/appinstall.svg | 66 -------------------- icon/appremove.svg | 76 ---------------------- icon/appsearch.svg | 131 -------------------------------------- icon/appupgrade.svg | 132 --------------------------------------- icon/caccesories.svg | 85 ------------------------- icon/cgames.svg | 61 ------------------ icon/cgraphics.svg | 54 ---------------- icon/cinternet.svg | 106 ------------------------------- icon/cmultimedia.svg | 64 ------------------- icon/coffice.svg | 64 ------------------- icon/csystem.svg | 77 ----------------------- libsisyphus.sh | 102 ------------------------------ org.redcorelinux.sisyphus.policy | 22 ------- sisyphus | 14 ----- sisyphus-pkexec | 2 - ui/accesoriesui.sh | 40 ------------ ui/gamesui.sh | 52 --------------- ui/graphicsui.sh | 58 ----------------- ui/internetui.sh | 78 ----------------------- ui/multimediaui.sh | 70 --------------------- ui/officeui.sh | 45 ------------- ui/systemui.sh | 40 ------------ 26 files changed, 1569 deletions(-) delete mode 100644 Makefile delete mode 100755 desktop/sisyphus.desktop delete mode 100644 desktop/sisyphus.png delete mode 100644 icon/appcleanup.svg delete mode 100644 icon/appinstall.svg delete mode 100644 icon/appremove.svg delete mode 100644 icon/appsearch.svg delete mode 100644 icon/appupgrade.svg delete mode 100644 icon/caccesories.svg delete mode 100644 icon/cgames.svg delete mode 100644 icon/cgraphics.svg delete mode 100644 icon/cinternet.svg delete mode 100644 icon/cmultimedia.svg delete mode 100644 icon/coffice.svg delete mode 100644 icon/csystem.svg delete mode 100755 libsisyphus.sh delete mode 100644 org.redcorelinux.sisyphus.policy delete mode 100755 sisyphus delete mode 100755 sisyphus-pkexec delete mode 100755 ui/accesoriesui.sh delete mode 100755 ui/gamesui.sh delete mode 100755 ui/graphicsui.sh delete mode 100755 ui/internetui.sh delete mode 100755 ui/multimediaui.sh delete mode 100755 ui/officeui.sh delete mode 100755 ui/systemui.sh diff --git a/Makefile b/Makefile deleted file mode 100644 index c87b76f..0000000 --- a/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -SUBDIRS = -DESTDIR = -UBINDIR ?= /usr/bin -DESKTOPDIR ?= /usr/share/applications -PIXMAPDIR ?= /usr/share/pixmaps -SISYPHUSLIBDIR ?= /usr/lib/sisyphus -SISYPHUSDATADIR ?= /usr/share/sisyphus -POLKITDIR ?= /usr/share/polkit-1/actions - -all: - for d in $(SUBDIRS); do $(MAKE) -C $$d; done - -clean: - for d in $(SUBDIRS); do $(MAKE) -C $$d clean; done - -install: - for d in $(SUBDIRS); do $(MAKE) -C $$d install; done - - install -d $(DESTDIR)$(UBINDIR) - install -m 0755 sisyphus $(DESTDIR)$(UBINDIR)/ - install -m 0755 sisyphus-pkexec $(DESTDIR)$(UBINDIR)/ - install -d $(DESTDIR)$(SISYPHUSLIBDIR) - install -m 0755 libsisyphus.sh $(DESTDIR)$(SISYPHUSLIBDIR)/ - install -m 0755 ui/accesoriesui.sh $(DESTDIR)$(SISYPHUSLIBDIR)/ - install -m 0755 ui/gamesui.sh $(DESTDIR)$(SISYPHUSLIBDIR)/ - install -m 0755 ui/graphicsui.sh $(DESTDIR)$(SISYPHUSLIBDIR)/ - install -m 0755 ui/internetui.sh $(DESTDIR)$(SISYPHUSLIBDIR)/ - install -m 0755 ui/multimediaui.sh $(DESTDIR)$(SISYPHUSLIBDIR)/ - install -m 0755 ui/officeui.sh $(DESTDIR)$(SISYPHUSLIBDIR)/ - install -m 0755 ui/systemui.sh $(DESTDIR)$(SISYPHUSLIBDIR)/ - install -d $(DESTDIR)$(SISYPHUSDATADIR) - install -m 0755 icon/appcleanup.svg $(DESTDIR)$(SISYPHUSDATADIR)/ - install -m 0755 icon/appinstall.svg $(DESTDIR)$(SISYPHUSDATADIR)/ - install -m 0755 icon/appremove.svg $(DESTDIR)$(SISYPHUSDATADIR)/ - install -m 0755 icon/appsearch.svg $(DESTDIR)$(SISYPHUSDATADIR)/ - install -m 0755 icon/appupgrade.svg $(DESTDIR)$(SISYPHUSDATADIR)/ - install -m 0755 icon/caccesories.svg $(DESTDIR)$(SISYPHUSDATADIR)/ - install -m 0755 icon/cgames.svg $(DESTDIR)$(SISYPHUSDATADIR)/ - install -m 0755 icon/cgraphics.svg $(DESTDIR)$(SISYPHUSDATADIR)/ - install -m 0755 icon/cinternet.svg $(DESTDIR)$(SISYPHUSDATADIR)/ - install -m 0755 icon/cmultimedia.svg $(DESTDIR)$(SISYPHUSDATADIR)/ - install -m 0755 icon/coffice.svg $(DESTDIR)$(SISYPHUSDATADIR)/ - install -m 0755 icon/csystem.svg $(DESTDIR)$(SISYPHUSDATADIR)/ - install -d $(DESTDIR)$(DESKTOPDIR) - install -m 0755 desktop/sisyphus.desktop $(DESTDIR)$(DESKTOPDIR)/ - install -d $(DESTDIR)$(PIXMAPDIR) - install -m 0644 desktop/sisyphus.png $(DESTDIR)$(PIXMAPDIR) - install -d $(DESTDIR)$(POLKITDIR) - install -m 0644 org.redcorelinux.sisyphus.policy $(DESTDIR)$(POLKITDIR)/ - -uninstall: - rm -rf $(DESTDIR)$(UBINDIR)/sisyphus - rm -rf $(DESTDIR)$(UBINDIR)/sisyphus-pkexec - rm -rf $(DESTDIR)$(DESKTOPDIR)/sisyphus.desktop - rm -rf $(DESTDIR)$(PIXMAPDIR)/sisyphus.png - rm -rf $(DESTDIR)$(POLKITDIR)/org.redcorelinux.sisyphus.policy - rm -rf $(DESTDIR)$(SISYPHUSLIBDIR) - rm -rf $(DESTDIR)$(SISYPHUSDATADIR) diff --git a/desktop/sisyphus.desktop b/desktop/sisyphus.desktop deleted file mode 100755 index ef4efd1..0000000 --- a/desktop/sisyphus.desktop +++ /dev/null @@ -1,7 +0,0 @@ -[Desktop Entry] -Name=Sisyphus -Type=Application -Comment=A simple Epkg GUI -Exec=sisyphus-pkexec -Icon=sisyphus -Categories=System; diff --git a/desktop/sisyphus.png b/desktop/sisyphus.png deleted file mode 100644 index d36d93b..0000000 Binary files a/desktop/sisyphus.png and /dev/null differ diff --git a/icon/appcleanup.svg b/icon/appcleanup.svg deleted file mode 100644 index 422cf73..0000000 --- a/icon/appcleanup.svg +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/icon/appinstall.svg b/icon/appinstall.svg deleted file mode 100644 index eaf87ce..0000000 --- a/icon/appinstall.svg +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/icon/appremove.svg b/icon/appremove.svg deleted file mode 100644 index a4a3b5e..0000000 --- a/icon/appremove.svg +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/icon/appsearch.svg b/icon/appsearch.svg deleted file mode 100644 index 417a4a0..0000000 --- a/icon/appsearch.svg +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/icon/appupgrade.svg b/icon/appupgrade.svg deleted file mode 100644 index 20d3848..0000000 --- a/icon/appupgrade.svg +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/icon/caccesories.svg b/icon/caccesories.svg deleted file mode 100644 index d4c6502..0000000 --- a/icon/caccesories.svg +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - diff --git a/icon/cgames.svg b/icon/cgames.svg deleted file mode 100644 index 7000d13..0000000 --- a/icon/cgames.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/icon/cgraphics.svg b/icon/cgraphics.svg deleted file mode 100644 index 431a435..0000000 --- a/icon/cgraphics.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/icon/cinternet.svg b/icon/cinternet.svg deleted file mode 100644 index d5e61a6..0000000 --- a/icon/cinternet.svg +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - diff --git a/icon/cmultimedia.svg b/icon/cmultimedia.svg deleted file mode 100644 index 010b32f..0000000 --- a/icon/cmultimedia.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/icon/coffice.svg b/icon/coffice.svg deleted file mode 100644 index bfdbe2c..0000000 --- a/icon/coffice.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/icon/csystem.svg b/icon/csystem.svg deleted file mode 100644 index 3e52772..0000000 --- a/icon/csystem.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/libsisyphus.sh b/libsisyphus.sh deleted file mode 100755 index 899eca9..0000000 --- a/libsisyphus.sh +++ /dev/null @@ -1,102 +0,0 @@ -#!/usr/bin/env bash - -# export dialog && abort flags -export local sisyphusprogress="yad --title "sisyphus" --progress --pulsate --width 400 --center --no-buttons --on-top --no-escape --sticky --fixed --undecorated --skip-taskbar --auto-close" -export local sisyphustextinfo="yad --title "sisyphus" --text-info --width 800 --height 600 --center --no-buttons --skip-taskbar --listen --tail" - -# import user interfaces -source /usr/lib64/sisyphus/accesoriesui.sh -source /usr/lib64/sisyphus/gamesui.sh -source /usr/lib64/sisyphus/graphicsui.sh -source /usr/lib64/sisyphus/internetui.sh -source /usr/lib64/sisyphus/multimediaui.sh -source /usr/lib64/sisyphus/officeui.sh -source /usr/lib64/sisyphus/systemui.sh - -# create main user interface -export local mainui=' - - - - - - - - - - - Enter package(s) - pkgname - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -' diff --git a/org.redcorelinux.sisyphus.policy b/org.redcorelinux.sisyphus.policy deleted file mode 100644 index b99bd6d..0000000 --- a/org.redcorelinux.sisyphus.policy +++ /dev/null @@ -1,22 +0,0 @@ - - - - - Redcore Linux - http://redcorelinux.org - - - Run Sisyphus - Authentication is required to run Sisyphus - redcore-logo - - no - no - auth_admin - - /usr/bin/sisyphus - true - - diff --git a/sisyphus b/sisyphus deleted file mode 100755 index 9121677..0000000 --- a/sisyphus +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env bash - -# Sisyphus is a simple GUI for epkg, the portage wrapper -# It uses gnome-extra/yad, x11-libs/vte && x11-misc/gtkdialog -# Main Author : Ghiunhan Mamut @ Redcore Linux Project - -# import main user interface -source /usr/lib64/sisyphus/libsisyphus.sh - -main() { - gtkdialog --space-expand=true --space-fill=true --program=mainui & -} - -main diff --git a/sisyphus-pkexec b/sisyphus-pkexec deleted file mode 100755 index a78d185..0000000 --- a/sisyphus-pkexec +++ /dev/null @@ -1,2 +0,0 @@ -#!/usr/bin/env bash -pkexec /usr/bin/sisyphus diff --git a/ui/accesoriesui.sh b/ui/accesoriesui.sh deleted file mode 100755 index fa5133a..0000000 --- a/ui/accesoriesui.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env bash - -# create accesories user interface -export local accesoriesui=' - - - - - - accesories - - app-admin|keepassx|Qt password manager compatible with its Win32 and Pocket PC versions - - - - - - - - - - - -' diff --git a/ui/gamesui.sh b/ui/gamesui.sh deleted file mode 100755 index 87bbb78..0000000 --- a/ui/gamesui.sh +++ /dev/null @@ -1,52 +0,0 @@ -#!/usr/bin/env bash - -# create games user interface -export local gamesui=' - - - - - - game - - app-emulation|playonlinux|Set of scripts to easily install and use Windows games and software - app-emulation|steam|Digital distribution client bootstrap package - games-action|armagetronad|Fast-paced 3D lightcycle game based on Tron - games-action|chromium-bsu|Chromium B.S.U. - an arcade game - games-action|supertuxkart|A kart racing game starring Tux, the linux penguin (TuxKart fork) - games-action|teeworlds|Online multi-player platform 2D shooter - games-board|aisleriot|A collection of solitaire card games for GNOME - games-emulation|dosbox|DOS Emulator - games-emulation|zsnes|SNES (Super Nintendo) emulator that uses x86 assembly - games-fps|urbanterror|Hollywood tactical shooter based on the ioquake3 engine - games-fps|xonotic|Fork of Nexuiz, Deathmatch FPS based on DarkPlaces, an advanced Quake 1 engine - games-simulation|openttd|OpenTTD is a clone of Transport Tycoon Deluxe - games-strategy|0ad|Cross-platform, 3D and historically-based real-time strategy game - - - - - - - - - - - -' diff --git a/ui/graphicsui.sh b/ui/graphicsui.sh deleted file mode 100755 index 2be733c..0000000 --- a/ui/graphicsui.sh +++ /dev/null @@ -1,58 +0,0 @@ -#!/usr/bin/env bash - -# create graphics user interface -export local graphicsui=' - - - - - - graphics - - media-fonts|cantarell|Default fontset for GNOME Shell - media-fonts|corefonts|Microsofts TrueType core fonts - media-fonts|dejavu|DejaVu fonts, bitstream vera with ISO-8859-2 characters - media-fonts|inconsolata|A beautiful sans-serif monotype font designed for code listings - media-fonts|liberation-fonts|A Helvetica/Times/Courier replacement TrueType font set, courtesy of Red Hat - media-fonts|libertine|Fonts from the Linux Libertine Open Fonts Project - media-fonts|noto|Googles font family that aims to support all the worlds languages - media-fonts|ttf-bitstream-vera|Bitstream Vera font family - media-fonts|urw-fonts|free good quality fonts gpl-ed by URW++ - media-gfx|blender|3D Creation/Animation/Publishing System - media-gfx|darktable|A virtual lighttable and darkroom for photographers - media-gfx|eom|The MATE image viewer - media-gfx|gimp|GNU Image Manipulation Program - media-gfx|gpicview|A Simple and Fast Image Viewer for X - media-gfx|inkscape|A SVG based generic vector-drawing program - media-gfx|lximage-qt|LXImage Image Viewer - GPicView replacement - media-gfx|rawtherapee|A powerful cross-platform raw image processing program - media-gfx|simple-scan|Simple document scanning utility - media-gfx|xsane|graphical scanning frontend - - - - - - - - - - - -' diff --git a/ui/internetui.sh b/ui/internetui.sh deleted file mode 100755 index 1130e16..0000000 --- a/ui/internetui.sh +++ /dev/null @@ -1,78 +0,0 @@ -#!/usr/bin/env bash - -# create internet user interface -export local internetui=' - - - - - - internet - - net-analyzer|netcat6|netcat clone with better IPv6 support, improved code, etc... - net-analyzer|nmap|A utility for network discovery and security auditing - net-dns|avahi|System which facilitates service discovery on a local network - net-firewall|firewalld|A firewall daemon with D-BUS interface providing a dynamic firewall - net-firewall|ufw|A program used to manage a netfilter firewall - net-firewall|ufw-frontends|Provides graphical frontend to ufw - net-fs|samba|Samba Suite Version 4 - net-ftp|filezilla|FTP client with lots of useful features and an intuitive interface - net-im|pidgin|GTK Instant Messenger client - net-im|skypeforlinux|P2P Internet Telephony (VoiceIP) client - net-im|telegram|Unofficial telegram protocol client - net-im|viber|Free calls, text and picture sharing with anyone, anywhere! - net-irc|hexchat|Graphical IRC client based on XChat - net-irc|konversation|A user friendly IRC Client - net-irc|quassel|Qt/KDE IRC client supporting a remote daemon for 24/7 connectivity - net-misc|cmst|Qt GUI for Connman with system tray icon - net-misc|dropbox|Dropbox daemon (pretends to be GUI-less) - net-misc|lxqt-connman-applet|LXQt system-tray applet for ConnMan - net-misc|modem-manager-gui|Frontend for ModemManager daemon able to control specific modem functions - net-misc|teamviewer|All-In-One Solution for Remote Access and Support over the Internet - net-misc|tigervnc|Remote desktop viewer display system - net-misc|youtube-dl|Download videos from YouTube.com (and more sites...) - net-news|liferea|News Aggregator for RDF/RSS/CDF/Atom/Echo feeds - net-p2p|deluge|BitTorrent client with a client/server model - net-p2p|qbittorrent|BitTorrent client in C++ and Qt - net-p2p|transmission|A Fast, Easy and Free BitTorrent client - net-print|cups|The Common Unix Printing System - net-wireless|aircrack-ng|WLAN tools for breaking 802.11 WEP/WPA keys - net-wireless|wavemon|Ncurses based monitor for IEEE 802.11 wireless LAN cards - www-client|firefox|Firefox Web Browser - www-client|google-chrome|The web browser from Google - www-client|opera|A fast and secure web browser - www-client|qupzilla|A cross-platform web browser using QtWebEngine - www-client|vivaldi|A new browser for our friends - www-misc|profile-sync-daemon|Symlinks and syncs browser profile dirs to RAM - www-plugins|adobe-flash|Adobe Flash Player - www-plugins|chrome-binary-plugins|Binary plugins from Google Chrome for use in Chromium - www-plugins|freshplayerplugin|PPAPI-host NPAPI-plugin adapter for flashplayer in npapi based browsers - www-plugins|google-talkplugin|Video chat browser plug-in for Google Talk - - - - - - - - - - - -' diff --git a/ui/multimediaui.sh b/ui/multimediaui.sh deleted file mode 100755 index 0d462b0..0000000 --- a/ui/multimediaui.sh +++ /dev/null @@ -1,70 +0,0 @@ -#!/usr/bin/env bash - -# create multimedia user interface -export local multimediaui=' - - - - - - multimedia - - app-cdr|bashburn|A shell script for burning optical media - app-cdr|bchunk|Converts bin/cue CD-images to iso+wav/cdr - app-cdr|bin2iso|converts RAW format (.bin|.cue) files to ISO/WAV format - app-cdr|brasero|CD/DVD burning application for the GNOME desktop - app-cdr|cdrdao|Burn CDs in disk-at-once mode -- with optional GUI frontend - app-cdr|cdrtools|A set of tools for CD|DVD reading and recording, including cdrecord - app-cdr|dvd+rw-tools|A set of tools for DVD+RW|-RW drives - app-cdr|nrg2iso|Converts Nero nrg CD-images to iso - media-plugins|qmmp-plugin-pack|A set of extra plugins for Qmmp - media-sound|audacity|Free crossplatform audio editor - media-sound|deadbeef|foobar2k-like music player - media-sound|pavucontrol|Pulseaudio Volume Control, GTK based mixer for Pulseaudio - media-sound|pavucontrol-qt|Qt port of pavucontrol - media-sound|qmmp|Qt5-based audio player with winamp/xmms skins support - media-sound|spotify|Spotify is a social music platform - media-sound|volumeicon|A lightweight volume control that sits in your systray - media-tv|sopcast|SopCast free P2P Internet TV binary - media-tv|tv-maxe|Program to view free channels - media-tv|v4l-utils|Separate utilities ebuild from upstream v4l-utils package - media-video|baka-mplayer|Cross-platform libmpv-based multimedia player with uncluttered design - media-video|ffmulticonverter|FF Multi Converter is a simple graphical converter application for audio, video, image and document - media-video|gtk-recordmydesktop|GTK+ interface for RecordMyDesktop - media-video|guvcview|GTK+ UVC Webcam Viewer - media-video|handbrake|Open-source, GPL-licensed, multiplatform, multithreaded video transcoder - media-video|mpv|Media player based on MPlayer and mplayer2 - media-video|obs-studio|Software for Recording and Streaming Live Video Content - media-video|simplescreenrecorder|A Simple Screen Recorder - media-video|smplayer|Great Qt GUI front-end for mplayer/mpv - media-video|smtube|YouTube Browser for SMPlayer - media-video|vlc|VLC media player - Video player and streamer - - - - - - - - - - - - -' diff --git a/ui/officeui.sh b/ui/officeui.sh deleted file mode 100755 index e627338..0000000 --- a/ui/officeui.sh +++ /dev/null @@ -1,45 +0,0 @@ -#!/usr/bin/env bash - -# create office user interface -export local officeui=' - - - - - - office - - app-office|abiword|Fully featured yet light and fast cross platform word processor documentation - app-office|fet|Opensource school/high-school/university timetable scheduling software - app-office|gnucash|A personal finance manager - app-office|libreoffice|A full office productivity suite - app-office|wps-office|WPS Office is an office productivity suite - app-text|qpdfview|A tabbed document viewer - - - - - - - - - - - -' diff --git a/ui/systemui.sh b/ui/systemui.sh deleted file mode 100755 index 5faa654..0000000 --- a/ui/systemui.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env bash - -# create system user interface -export local systemui=' - - - - - - system - - sys-boot|unetbootin-static|Universal Netboot Installer creates Live USB systems for various OS distributions - - - - - - - - - - - -' -- cgit v1.2.3