zsh rc cleanup

This commit is contained in:
Wryn Wagner
2020-11-04 12:57:36 -07:00
parent 3455457999
commit 891aec3ee6
7 changed files with 94 additions and 77 deletions

13
zsh/google Normal file
View File

@ -0,0 +1,13 @@
#!/bin/zsh
alias gdrive="RCLONE_GOOGLE_DRIVE_MOUNT"
RCLONE_GOOGLE_DRIVE_MOUNT() {
local RCLONE_REMOTE_NAME='google-drive';
clear;
figlet GOOGLE DRIVE CONNECTION | lolcat;
echo -e "\e[3m(C-c to close)\e[0m";
rclone mount "$RCLONE_REMOTE_NAME:$1" "$HOME/GoogleDrive"
}