diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2016-12-24 23:16:47 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2016-12-24 23:16:47 +0000 |
commit | 30f4daf518bf907e560f9a60da6ae76fce86fb29 (patch) | |
tree | 046ec79762a2c1f0154448e4c9864c074dcb9605 /libsisyphus.sh | |
parent | 6b3099135638121af264e3b37e0232a44585d3d7 (diff) |
add button icons, improve main UI, now it looks stunning
Diffstat (limited to 'libsisyphus.sh')
-rwxr-xr-x | libsisyphus.sh | 69 |
1 files changed, 34 insertions, 35 deletions
diff --git a/libsisyphus.sh b/libsisyphus.sh index 6b38c72..6b45512 100755 --- a/libsisyphus.sh +++ b/libsisyphus.sh @@ -17,87 +17,86 @@ source /usr/lib64/sisyphus/systemui.sh export local mainui=' <window title="Sisyphus - A simple Epkg GUI" window-position="1" icon-name="gtk-search" modal="true" resizable="false" width-request="800" height-request="600"> <vbox> -<frame Manage packages by name> - <hbox> - <text> - <label>Enter package(s)</label> +<frame> + <hbox space-expand="false" space-extend="false"> + <text space-expand="true" space-extend="true"> + <label>MANAGE PACKAGES</label> </text> - <entry> + </hbox> + <hbox space-expand="false" space-extend="false"> + <entry space-expand="true" space-extend="true"> + <default>Enter package(s)</default> <variable>pkgname</variable> </entry> </hbox> - <hbox> - <button tooltip-text="Search for package(s)"> - <label>Search package(s)</label> + <hbox space-expand="false" space-extend="false"> + <button space-expand="true" space-extend="true" tooltip-text="Search package(s)"> + <input file>/usr/share/sisyphus/search.svg</input> <action>$showresults epkg search $pkgname</action> </button> - <button tooltip-text="Install new package(s) (no confirmation)"> - <label>Install package(s)</label> + <button space-expand="true" space-extend="true" tooltip-text="Install package(s)"> + <input file>/usr/share/sisyphus/install.svg</input> <action>$showprogress epkg autoinstall $pkgname</action> </button> - <button tooltip-text="Uninstall package(s) safely (no confirmation)"> - <label>Remove package(s)</label> + <button space-expand="true" space-extend="true" tooltip-text="Uninstall package(s)"> + <input file>/usr/share/sisyphus/remove.svg</input> <action>$showprogress epkg autoremove $pkgname</action> </button> - <button tooltip-text="Upgrade system (no confirmation)"> - <label>Upgrade System</label> + <button space-expand="true" space-extend="true" tooltip-text="Upgrade system"> + <input file>/usr/share/sisyphus/upgrade.svg</input> <action>$showprogress epkg autoupgrade</action> </button> - <button tooltip-text="Remove orphan packages(s) aka no longer needed (no confirmation)"> - <label>Remove orphan package(s)</label> + <button space-expand="true" space-extend="true" tooltip-text="Remove orphan packages(s) aka no longer needed"> + <input file>/usr/share/sisyphus/purge.svg</input> <action>$showprogress epkg autoclean</action> </button> </hbox> -</frame> -<frame Browse packages by category> - <hbox> + <hseparator space-expand="true" space-extend="true"></hseparator> + <hbox space-expand="false" space-extend="false"> + <text space-expand="true" space-extend="true"> + <label>BROWSE PACKAGES</label> + </text> + </hbox> + <hbox space-expand="true" space-extend="true"> <button tooltip-text="Accesories"> - <label>Accesories</label> + <input file>/usr/share/sisyphus/accesories.svg</input> <action signal="button-press-event">gtkdialog --space-expand=true --space-fill=true --program=accesoriesui &</action> <action signal="button-release-event">EXIT:ok</action> </button> <button tooltip-text="Games"> - <label>Games</label> + <input file>/usr/share/sisyphus/games.svg</input> <action signal="button-press-event">gtkdialog --space-expand=true --space-fill=true --program=gamesui &</action> <action signal="button-release-event">EXIT:ok</action> </button> <button tooltip-text="Graphics"> - <label>Graphics</label> + <input file>/usr/share/sisyphus/graphics.svg</input> <action signal="button-press-event">gtkdialog --space-expand=true --space-fill=true --program=graphicsui &</action> <action signal="button-release-event">EXIT:ok</action> </button> <button tooltip-text="Internet"> - <label>Internet</label> + <input file>/usr/share/sisyphus/internet.svg</input> <action signal="button-press-event">gtkdialog --space-expand=true --space-fill=true --program=internetui &</action> <action signal="button-release-event">EXIT:ok</action> </button> </hbox> - <hbox> + <hbox space-expand="true" space-extend="true"> <button tooltip-text="Sound & Video"> - <label>Sound & Video</label> + <input file>/usr/share/sisyphus/multimedia.svg</input> <action signal="button-press-event">gtkdialog --space-expand=true --space-fill=true --program=multimediaui &</action> <action signal="button-release-event">EXIT:ok</action> </button> <button tooltip-text="Office"> - <label>Office</label> + <input file>/usr/share/sisyphus/office.svg</input> <action signal="button-press-event">gtkdialog --space-expand=true --space-fill=true --program=officeui &</action> <action signal="button-release-event">EXIT:ok</action> </button> <button tooltip-text="System Tools"> - <label>System Tools</label> + <input file>/usr/share/sisyphus/system.svg</input> <action signal="button-press-event">gtkdialog --space-expand=true --space-fill=true --program=systemui &</action> <action signal="button-release-event">EXIT:ok</action> </button> </hbox> </frame> -<frame Terminal Emulator> - <hbox> - <terminal argv0="/bin/bash"> - <variable>vte1</variable> - <input>echo epkg</input> - </terminal> - </hbox> -</frame> </vbox> </window> ' |