From 48343c67e2f0f931c2d00c1c460814ebde623f8c Mon Sep 17 00:00:00 2001 From: Siddhartha Date: Sun, 30 Oct 2022 19:00:53 +0530 Subject: [PATCH] change to relative directories to make the scripts OS agnostic --- music/music-for-programming.sh | 2 +- music/somafm.sh | 2 +- music/video-game-ambient.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/music/music-for-programming.sh b/music/music-for-programming.sh index 1d456e1..a7a4526 100644 --- a/music/music-for-programming.sh +++ b/music/music-for-programming.sh @@ -1,6 +1,6 @@ #!/bin/bash -entries=$(cat /home/mr_robot/Music/scripts/programming-music.txt | shuf | awk '{print $2}') +entries=$(cat ./programming-music.txt | shuf | awk '{print $2}') track=$(echo $entries | awk '{print $1}') diff --git a/music/somafm.sh b/music/somafm.sh index 0aacebf..f0d1d0e 100644 --- a/music/somafm.sh +++ b/music/somafm.sh @@ -1,6 +1,6 @@ #!/bin/bash -entries=$(cat /home/mr_robot/Music/scripts/somafm-ambient.txt | shuf | awk '{print $2}') +entries=$(cat ./somafm-ambient.txt | shuf | awk '{print $2}') track=$(echo $entries | awk '{print $1}') diff --git a/music/video-game-ambient.sh b/music/video-game-ambient.sh index a6a3eee..ce18cb4 100755 --- a/music/video-game-ambient.sh +++ b/music/video-game-ambient.sh @@ -1,6 +1,6 @@ #!/bin/bash -entries=$(cat /home/mr_robot/Music/scripts/videogame-music.txt | shuf | awk '{print $2}') +entries=$(cat ./videogame-music.txt | shuf | awk '{print $2}') track=$(echo $entries | awk '{print $1}')