change to relative directories to make the scripts OS agnostic

This commit is contained in:
Siddhartha 2022-10-30 19:00:53 +05:30
parent 66bfcb02b5
commit 48343c67e2
3 changed files with 3 additions and 3 deletions

View File

@ -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}')

View File

@ -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}')

View File

@ -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}')