#!/bin/sh cat /dev/null > /tmp/SeTnewtag dialog --title "Select pkgs from ext(Advanced System Libraries)" --checklist "Select packages to install from ext series. Use cursor up/down to select the package, mark(*) by space key. Push Enter to start install." 24 72 15 "ConsoleKit2" "ConsoleKit2" "on" \ "PyQt5_gpl" "Python-Qt5" "on" \ "acpid" "acpid - Advanced Configuration and Power Interface event daemon" "on" \ "at" "at" "on" \ "autofs" "autofs" "on" \ "bind_tools" "Tools for DNS" "on" \ "bluez" "e_title" "on" \ "certifi" "Root Certificates for Python" "on" \ "chardet" "Chardet: The Universal Character Encoding Detector" "on" \ "check_update_cache" "Desktop cache updator" "on" \ "cifs_utils" "e_title" "on" \ "colord" "color management daemon colord" "on" \ "dbus_glib" "D-Bus glib binding" "on" \ "dbus_python" "e_title" "on" \ "dconf" "DConf config system" "on" \ "desktop_file_utils" "Desktop file utilities for desktop-entry spec" "on" \ "freeglut" "FreeGlut for OpenGL" "on" \ "fuse2" "Filesystem in User space (Ver.2)" "on" \ "fuse3" "Filesystem in User space (Ver.3)" "on" \ "gconf" "GConf config system" "on" \ "gcr" "GNOME crypt service" "on" \ "glib_networking" "network module for glib" "on" \ "gsettings_desktop_schemas" "e_title" "on" \ "gtk_doc" "Document tools for Gtk" "on" \ "gvfs" "GVFS Virtual File system" "on" \ "icon_naming_utils" "icon naming utilities" "on" \ "idna" "Internationalized Domain Names in Applications" "on" \ "imagemagick6" "ImageMagick 6.x library" "on" \ "imagemagick7" "ImageMagick 7" "on" \ "jre" "e_title" "on" \ "lftp" "e_title" "on" \ "libgphoto2" "libgphoto2: library for digital photography" "on" \ "libmtp" "e_title" "on" \ "libsecret" "GObject library for Secret Service API" "on" \ "libsoup" "HTTP client/server library" "on" \ "lxde" "LXDE Desktop Environment" "on" \ "mlocate" "e_title" "on" \ "ntfs_3g" "NTTFS-3g: Tuxera's NTFS implementation" "on" \ "numpy" "e_title" "on" \ "obconf" "OpenBox Config tool" "on" \ "openbox" "OpenBox Window Manager" "on" \ "openldap" "e_title" "on" \ "perl_append" "add-on modules for perl" "on" \ "pinentry" "PIN entry kit, pinentry" "on" \ "polkit_gnome" "e_title" "on" \ "pygobject2" "Python-gobject modules" "on" \ "pygobject3" "Gtk+-3 GObject module" "on" \ "pygtk" "Python-Gtk module" "on" \ "pyxdg" "Python-XDG" "on" \ "requests" "HTTP requests module for Python2/3 " "on" \ "samba" "e_title" "on" \ "scour" "SVG optimizer/cleaner" "on" \ "shared_mime_info" "shared-mime-info" "on" \ "sip" "Python-Sip" "on" \ "udisks" "e_title" "on" \ "udisks2" "e_title" "on" \ "unrar" "RAR decompressor" "on" \ "upower" "Power Management tool" "on" \ "urllib3" "urllib3 for Python" "on" \ "usbutils" "usbutils" "on" \ "vte" "Virtual Terminal Emulator" "on" \ "xdg_user_dirs" "xdg-user-dirs" "on" \ "xdg_utils" "xdg desktop utility" "on" \ 2> /tmp/SeTpkgs if [ $? = 1 -o $? = 255 ]; then rm -f /tmp/SeTpkgs > /tmp/SeTnewtag for pkg in ConsoleKit2 PyQt5_gpl acpid at autofs bind_tools bluez certifi chardet check_update_cache cifs_utils colord dbus_glib dbus_python dconf desktop_file_utils freeglut fuse2 fuse3 gconf gcr glib_networking gsettings_desktop_schemas gtk_doc gvfs icon_naming_utils idna imagemagick6 imagemagick7 jre lftp libgphoto2 libmtp libsecret libsoup lxde mlocate ntfs_3g numpy obconf openbox openldap perl_append pinentry polkit_gnome pygobject2 pygobject3 pygtk pyxdg requests samba scour shared_mime_info sip udisks udisks2 unrar upower urllib3 usbutils vte xdg_user_dirs xdg_utils ; do echo "$pkg: SKP" >> /tmp/SeTnewtag done exit fi cat /dev/null > /tmp/SeTnewtag for PACKAGE in ConsoleKit2 PyQt5_gpl acpid at autofs bind_tools bluez certifi chardet check_update_cache cifs_utils colord dbus_glib dbus_python dconf desktop_file_utils freeglut fuse2 fuse3 gconf gcr glib_networking gsettings_desktop_schemas gtk_doc gvfs icon_naming_utils idna imagemagick6 imagemagick7 jre lftp libgphoto2 libmtp libsecret libsoup lxde mlocate ntfs_3g numpy obconf openbox openldap perl_append pinentry polkit_gnome pygobject2 pygobject3 pygtk pyxdg requests samba scour shared_mime_info sip udisks udisks2 unrar upower urllib3 usbutils vte xdg_user_dirs xdg_utils ; do if grep "$PACKAGE" /tmp/SeTpkgs 1> /dev/null 2> /dev/null ; then echo "$PACKAGE: ADD" >> /tmp/SeTnewtag else echo "$PACKAGE: SKP" >> /tmp/SeTnewtag fi done rm -f /tmp/SeTpkgs