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 46dc9e0..fd60667 100644 Binary files a/tetofortunes.dat and b/tetofortunes.dat differ 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"}