aboutsummaryrefslogtreecommitdiff
path: root/base/zsh/functions.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'base/zsh/functions.zsh')
-rw-r--r--base/zsh/functions.zsh8
1 files changed, 8 insertions, 0 deletions
diff --git a/base/zsh/functions.zsh b/base/zsh/functions.zsh
index db4271e..18ea8b4 100644
--- a/base/zsh/functions.zsh
+++ b/base/zsh/functions.zsh
@@ -25,3 +25,11 @@ hex() {
if [[ -n "$1" ]]; then printf "%X\n" $1
else print 'Usage: hex <number-to-convert>'; fi
}
+
+trc() {
+ if [[ `uname -n` = "aristotle" ]]; then
+ transmission-remote-client
+ else
+ ssh dhd.ahov.co ssh aristotle transmission-remote-client
+ fi
+}