#!/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 "OpenBLAS" "OpenBLAS library " "on" \ "PyQt5_gpl" "Python-Qt5" "on" \ "accountsservice" "a daemon that manipulates user account information" "on" \ "acpid" "acpid - Advanced Configuration and Power Interface event daemon" "on" \ "at" "at" "on" \ "autofs" "autofs" "on" \ "bind_tools" "Tools for DNS" "on" \ "blueman" "Blueman (Graphical Bluetooth Manager)" "on" \ "bluez" "e_title" "on" \ "cabextract" "CAB archive extractor" "on" \ "certifi" "Root Certificates for Python" "on" \ "chardet" "Chardet: The Universal Character Encoding Detector" "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" \ "fortune_mod" "provides fortune cookies on demand" "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" \ "gdl" "GDL:Gnome Docking Library" "on" \ "glib_networking" "network module for glib" "on" \ "gnome_common" "Macros for GNOME" "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" \ "lapack" "LAPACK linear equations solver" "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" \ "libunique" "libunique" "on" \ "lxde" "LXDE Desktop Environment" "on" \ "mlocate" "e_title" "on" \ "net_snmp" "e_title" "on" \ "ntfs_3g" "NTTFS-3g: Tuxera's NTFS implementation" "on" \ "numpy" "scientific computing module for Python" "on" \ "obconf" "OpenBox Config tool" "on" \ "openbox" "OpenBox Window Manager" "on" \ "openjdk" "Open source implementation of Java" "on" \ "openldap" "e_title" "on" \ "perl_append" "add-on modules for perl" "on" \ "pinentry" "PIN entry kit, pinentry" "on" \ "polkit_gnome" "e_title" "on" \ "py2_numpy" "scientific computing module for Python2" "on" \ "py2_pygobject3" "Gtk+-3 GObject module" "on" \ "pygobject2" "Python-gobject modules" "on" \ "pygobject3" "Gtk+-3 GObject module" "on" \ "pygtk" "Python-Gtk module" "on" \ "pyxdg" "Python-XDG" "on" \ "recode" "character set conversion utility recode" "on" \ "requests" "HTTP requests module for Python2/3 " "on" \ "rest" "Library for accessing RESTful servers" "on" \ "samba" "e_title" "on" \ "scour" "SVG optimizer/cleaner" "on" \ "sip" "Python-Sip" "on" \ "suitesparse" "suite of sparse matrix algorithms" "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 OpenBLAS PyQt5_gpl accountsservice acpid at autofs bind_tools blueman bluez cabextract certifi chardet cifs_utils colord dbus_glib dbus_python dconf desktop_file_utils fortune_mod fuse2 fuse3 gconf gcr gdl glib_networking gnome_common gsettings_desktop_schemas gtk_doc gvfs icon_naming_utils idna imagemagick6 imagemagick7 lapack lftp libgphoto2 libmtp libsecret libsoup libunique lxde mlocate net_snmp ntfs_3g numpy obconf openbox openjdk openldap perl_append pinentry polkit_gnome py2_numpy py2_pygobject3 pygobject2 pygobject3 pygtk pyxdg recode requests rest samba scour sip suitesparse 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 OpenBLAS PyQt5_gpl accountsservice acpid at autofs bind_tools blueman bluez cabextract certifi chardet cifs_utils colord dbus_glib dbus_python dconf desktop_file_utils fortune_mod fuse2 fuse3 gconf gcr gdl glib_networking gnome_common gsettings_desktop_schemas gtk_doc gvfs icon_naming_utils idna imagemagick6 imagemagick7 lapack lftp libgphoto2 libmtp libsecret libsoup libunique lxde mlocate net_snmp ntfs_3g numpy obconf openbox openjdk openldap perl_append pinentry polkit_gnome py2_numpy py2_pygobject3 pygobject2 pygobject3 pygtk pyxdg recode requests rest samba scour sip suitesparse 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