diff --git a/bashrc b/bashrc index 8ef6f7e5..405b5689 100644 --- a/bashrc +++ b/bashrc @@ -314,7 +314,7 @@ alias scat="gpg --decrypt " alias apt-key-refresh-keys="apt-key adv --keyserver pool.sks-keyservers.net --refresh-keys" # To see which mirror http.debian.net puts you to. The file which has the latest update time is the mirror which you are using. -alias http.debian.net="lynx http.debian.net/debian/project/trace/" +curl -s http://ftp.fi.debian.org/debian/project/trace/|pandoc -f html -t markdown # Amount of keys in GPG keyring. alias gpg-key-amount="gpg --list-keys|grep '^pub'|wc -l" diff --git a/recommends b/recommends index d24915f9..5c1cad57 100755 --- a/recommends +++ b/recommends @@ -1,4 +1,4 @@ -command -v \youtube-dl >/dev/null 2>&1 || { echo >&2 "shell-things contains youtube-dl alias for automatically setting video title as name."; } +command -v \youtube-dl >/dev/null 2>&1 || { echo >&2 "shell-things contains youtube-dl alias for automatically setting video title as name, so you might want to install youtube-dl."; } if [ ! -f /usr/share/doc/gnupg-curl/copyright ] then diff --git a/warnings b/warnings index 2212672b..4230ca68 100644 --- a/warnings +++ b/warnings @@ -4,7 +4,8 @@ command -v \htop >/dev/null 2>&1 || { echo >&2 "WARNING: htop isn't installed! Y command -v \gpg2 >/dev/null 2>&1 || { echo >&2 "WARNING: gnupg2 isn't installed! You should install it, because it's used as gpg."; } command -v \lynx >/dev/null 2>&1 || { echo >&2 "WARNING: lynx isn't installed! You should install it, because it's used by many functions."; } command -v \gpg-agent >/dev/null 2>&1 || { echo >&2 "WARNING: gnupg-agent isn't installed. You should install it, because it's used by gpg.conf and xsessionrc in shell-things."; } -command -v \curl >/dev/null 2>&1 || { echo >&2 "WARNING: curl isn't installed! You should install it, because it's used by some aliases orfunctions."; } +command -v \curl >/dev/null 2>&1 || { echo >&2 "WARNING: curl isn't installed! You should install it, because it's used by some aliases or functions."; } +command -v \youtube-dl >/dev/null 2>&1 || { echo >&2 "WARNING: pandoc isn't installed. It's used by some aliases or functions, so you might want to install it."; } ## To disable warnings, add the following (UNCOMMENTED!) to ~/.custom diff --git a/zshrc b/zshrc index 022db691..5d93807c 100644 --- a/zshrc +++ b/zshrc @@ -263,7 +263,7 @@ alias scat="gpg --decrypt " alias apt-key-refresh-keys="apt-key adv --keyserver pool.sks-keyservers.net --refresh-keys" # To see which mirror http.debian.net puts you to. The file which has the latest update time is the mirror which you are using. -alias http.debian.net="lynx http.debian.net/debian/project/trace/" +curl -s http://ftp.fi.debian.org/debian/project/trace/|pandoc -f html -t markdown # Amount of keys in GPG keyring. alias gpg-key-amount="gpg --list-keys|grep '^pub'|wc -l"