From 621ffe4c6cac961590a6bb6646edaa7c71b485c8 Mon Sep 17 00:00:00 2001 From: Eric Mitchell Date: Thu, 23 Apr 2026 12:10:17 -0400 Subject: [PATCH] update tetosong and tetofortunes added the ability to update updated the tetofortunes files --- README.md | 4 ++ tetofortunes | 96 +++++++++++++++++++++++++++++++++++++++++++++++ tetofortunes.dat | Bin 65336 -> 65384 bytes tetosong | 24 ++++++++++++ var.json | 2 +- 5 files changed, 125 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 66190a0..267d6c4 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/tetofortunes b/tetofortunes index b3fd05b..79a83b5 100644 --- a/tetofortunes +++ b/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 + +▼・ᴗ・▼ +% diff --git a/tetofortunes.dat b/tetofortunes.dat index 46dc9e016df2649e6db869f86396bcee78d204ba..fd606671033d10ee85056111f971921832aa2b95 100644 GIT binary patch delta 68 zcmdn-kNL$vW)21h1||ju`^y_S4E`H1DE{tZQ2e6|#A_K8|5gC;HwMLjjX(^f|JO1o QF>nL%Yz8GpH6We^08JVea{vGU delta 19 bcmaFyk9o&GW)21h1||ju`{Nrq4E_TENB9Pt diff --git a/tetosong b/tetosong index ba3d5f8..b257e3b 100644 --- a/tetosong +++ b/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..." diff --git a/var.json b/var.json index 9f97bf9..a323f75 100644 --- a/var.json +++ b/var.json @@ -1 +1 @@ -{"lastDate": "2026-04-21T00:00:00Z"} +{"lastDate": "2026-04-23T00:00:00Z"}