summaryrefslogtreecommitdiff
path: root/home/xyz/.local/bin/news
diff options
context:
space:
mode:
authorXiao Pan <gky44px1999@gmail.com>2023-05-31 18:09:04 -0700
committerXiao Pan <gky44px1999@gmail.com>2023-05-31 18:09:04 -0700
commitff6261c2772612a7a5949737660614ee24b61587 (patch)
tree4fb5b3d5cfa1af5dd815254199e49c2d4b9f841c /home/xyz/.local/bin/news
parent64d9b8ceca239d89c444e114651cf6eab62df1b4 (diff)
init
Diffstat (limited to 'home/xyz/.local/bin/news')
-rwxr-xr-xhome/xyz/.local/bin/news29
1 files changed, 0 insertions, 29 deletions
diff --git a/home/xyz/.local/bin/news b/home/xyz/.local/bin/news
deleted file mode 100755
index 82c47f34..00000000
--- a/home/xyz/.local/bin/news
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-
-daily () {
- # maybe add: https://discord.com/channels/@me
- o "$BROWSER" https://github.com/notifications https://mail.google.com 'https://mail.google.com/mail/u/0/#spam'
- # alacritty --hold must be before -e
- # full window: -w156, am and pm in one line: -w114
- o alacritty --hold -e rem -cu+2 -@ -w114
- o alacritty --hold -e wtr
- o alacritty -e newsboat
- o alacritty -e weechat
- o telegram-desktop
-}
-
-monthly () {
- o alacritty --hold -e rate
- o "$BROWSER" --new-window https://smtp.cheogram.com/
-}
-
-if [ $# -eq 0 ]; then
- daily
-else
- while getopts m opt; do
- case $opt in
- m) monthly;;
- \?) exit 1;;
- esac
- done
-fi