Graphs and tables for your Spotify account.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
287 B

  1. #!/bin/bash
  2. sv_scripts_dir="/home/kevin/coding/spotify-lib-vis/src/scripts"
  3. systemd_dir="/etc/systemd/system"
  4. script_name="update-history"
  5. for ext in "service" "timer" ; do
  6. filename="$script_name"."$ext"
  7. sudo ln -s "$sv_scripts_dir"/"$filename" "$systemd_dir"/"$filename"
  8. done