Add files via upload

This commit is contained in:
Christopher
2020-10-10 11:56:47 +02:00
committed by GitHub
parent 3b38963263
commit a45a5a2df1
3 changed files with 98 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
# Muzyka z CMUS
artist=$(cmus-remote -Q | grep 'tag artist' | cut -d ' ' -f 3-)
album=$(cmus-remote -Q | grep 'tag album ' | cut -d ' ' -f 3-)
title=$(cmus-remote -Q | grep 'tag title' | cut -d ' ' -f 3-)
file=$(cmus-remote -Q | grep 'file' | cut -d ' ' -f 2-)
echo =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
echo " Obecnie grane na Console Music Player"
echo " Tytul: $title"
echo " Album: $album"
echo " Autor: $artist"
echo " Plik: $file"
echo =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
echo " Skrypt napisany przez: Krzysztof 'KrzysiekSiemv' Smaga (https://github.com/KrzysiekSiemv)"
+5
View File
@@ -0,0 +1,5 @@
#!/bin/bash
echo =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
echo "Transmission Status"
echo "$(transmission-remote -l)"
echo =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=