From 865728068c965e066d0f8971c5b5ba26e12e7dce Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Thu, 24 Dec 2020 00:06:27 +0530 Subject: Adds scripts and links scripts and wallpapers --- scripts/mounter.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 scripts/mounter.sh (limited to 'scripts/mounter.sh') diff --git a/scripts/mounter.sh b/scripts/mounter.sh new file mode 100755 index 0000000..972b329 --- /dev/null +++ b/scripts/mounter.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash + +host="192.168.0.10"; +mount_dir=~/Downloads/shared; + +user=artemis; +pass=$(pass show Artemis/smb.artemis); + +sudo mount -t cifs //$host/public $mount_dir -o rw,username=$user,password=$pass; + -- cgit v1.3.1