update tetosong and tetofortunes
added the ability to update updated the tetofortunes files
This commit is contained in:
@@ -34,5 +34,9 @@ You can get your Teto song of the day by running:
|
||||
```bash
|
||||
tetosong
|
||||
```
|
||||
You can update the script and fortunes from github using:
|
||||
```bash
|
||||
tetosong -u
|
||||
```
|
||||
|
||||
Your original fortune command will remain untouched, tetosong just tells it to use a custom directory.
|
||||
|
||||
96
tetofortunes
96
tetofortunes
@@ -130614,3 +130614,99 @@ http://www.nicovideo.jp/watch/nm5762151
|
||||
|
||||
▼・ᴗ・▼
|
||||
%
|
||||
TETO SONG OF THE DAY!
|
||||
|
||||
Serbeer-P feat. 重音テト 英語 -- im not woke
|
||||
|
||||
http://www.nicovideo.jp/watch/sm46213337
|
||||
|
||||
▼・ᴗ・▼
|
||||
%
|
||||
TETO SONG OF THE DAY!
|
||||
|
||||
だがな゛(だがP゛) feat. 重音テト -- 多色無彩の手記
|
||||
|
||||
http://www.nicovideo.jp/watch/sm46216755
|
||||
|
||||
▼・ᴗ・▼
|
||||
%
|
||||
TETO SONG OF THE DAY!
|
||||
|
||||
あくた feat. 重音テト -- デッド・エンド・ゲーム
|
||||
|
||||
https://youtu.be/uqtd6p_Vy2Q
|
||||
|
||||
▼・ᴗ・▼
|
||||
%
|
||||
TETO SONG OF THE DAY!
|
||||
|
||||
PN4bi feat. 重音テト -- もっと再生数のびてくれたっていいじゃんかああああああああああ
|
||||
|
||||
http://www.nicovideo.jp/watch/sm46212627
|
||||
|
||||
▼・ᴗ・▼
|
||||
%
|
||||
TETO SONG OF THE DAY!
|
||||
|
||||
KIORU feat. 重音テト (OpenUTAU) -- DEPRESSED ERA
|
||||
|
||||
https://youtu.be/z1FgC-9xyIc
|
||||
|
||||
▼・ᴗ・▼
|
||||
%
|
||||
TETO SONG OF THE DAY!
|
||||
|
||||
めねらうす feat. 重音テト -- NOT TIME TO DIE!
|
||||
|
||||
http://www.nicovideo.jp/watch/sm46211774
|
||||
|
||||
▼・ᴗ・▼
|
||||
%
|
||||
TETO SONG OF THE DAY!
|
||||
|
||||
TomaSHI feat. 重音テト -- Shattered ego
|
||||
|
||||
https://youtu.be/2Wqp-7qfrcY
|
||||
|
||||
▼・ᴗ・▼
|
||||
%
|
||||
TETO SONG OF THE DAY!
|
||||
|
||||
えぬぃ feat. 重音テトSV2 -- Silent Re:mains
|
||||
|
||||
http://www.nicovideo.jp/watch/sm46209476
|
||||
|
||||
▼・ᴗ・▼
|
||||
%
|
||||
TETO SONG OF THE DAY!
|
||||
|
||||
い5 feat. 重音テト -- 深夜0時、此処に綴る
|
||||
|
||||
http://www.nicovideo.jp/watch/sm46210897
|
||||
|
||||
▼・ᴗ・▼
|
||||
%
|
||||
TETO SONG OF THE DAY!
|
||||
|
||||
츠키유메 feat. 重音テト -- ヒットマンメイド
|
||||
|
||||
http://www.nicovideo.jp/watch/sm46211035
|
||||
|
||||
▼・ᴗ・▼
|
||||
%
|
||||
TETO SONG OF THE DAY!
|
||||
|
||||
麗/うらら feat. 重音テト -- 読み違え人生
|
||||
|
||||
http://www.nicovideo.jp/watch/sm46207416
|
||||
|
||||
▼・ᴗ・▼
|
||||
%
|
||||
TETO SONG OF THE DAY!
|
||||
|
||||
Amethystis feat. 重音テト 英語 -- ???
|
||||
|
||||
https://youtu.be/nFeR36XwdaQ
|
||||
|
||||
▼・ᴗ・▼
|
||||
%
|
||||
|
||||
BIN
tetofortunes.dat
BIN
tetofortunes.dat
Binary file not shown.
24
tetosong
24
tetosong
@@ -1,4 +1,28 @@
|
||||
#!/usr/bin/bash
|
||||
# argument handling
|
||||
while [[ $# -gt 0 ]]; do
|
||||
case $1 in
|
||||
-u|--update)
|
||||
echo "Updating tetosong..."
|
||||
bash <(curl -s https://raw.githubusercontent.com/eric5949/tetosong/refs/heads/main/installer.sh)
|
||||
shift
|
||||
exit 0
|
||||
;;
|
||||
-h|--help)
|
||||
echo "--- TETOSONG HELP ---"
|
||||
echo ""
|
||||
echo " -h | display this message"
|
||||
echo " -u | update script and fortunes"
|
||||
echo ""
|
||||
shift
|
||||
exit 0
|
||||
;;
|
||||
*)
|
||||
break
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
# check if the config file exists, if not download it
|
||||
if [ ! -f ~/.local/share/tetosong/tetosong.config ]; then
|
||||
echo "Config file not found, downloading default..."
|
||||
|
||||
Reference in New Issue
Block a user