This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
###################################################################################### | |
# This script was originally created by Fritigern Gothly in 2013 | |
# It was donated on 12-22-2013 to the Singularity Viewer Project under | |
# the Stone Soup License. See http://en.wikipedia.org/wiki/Stone_Soup | |
# | |
# Add your name below if you have made a change or improvement to this script. | |
# Name Date Summary | |
# Fritigern Gothly 12-22-2013 Removed some useless commented code | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## ################### | |
## This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. | |
## Read the license terms at http://creativecommons.org/licenses/by-nc-sa/4.0/ | |
## ################### | |
## You can find the latest version of this script at https://gist.github.com/Fritigern/7654e5115c64e87f5cea | |
## ################### | |
## Note that this script depends on Yad, which is a fork of Zenity | |
## If your distro's repository does not contain Yad, then you can download it from | |
## http://sourceforge.net/projects/yad-dialog/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This script was moved to http://pastebin.com/D0d6hJU2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#### | |
# Licenced under Attribution-NonCommercial-ShareAlike 4.0 International | |
# http://creativecommons.org/licenses/by-nc-sa/4.0/ | |
#### ATTENTION #### | |
## This script requires that jq and coreutils are installed on your system ## | |
## In Debian-based distros, open a terminal and run | |
## sudo apt-get install jq coreutils | |
################### |