dots


commit
0856098
parent
6e75f3b
author
chasinglightning
date
2025-07-27 17:05:12 -0400 EDT
update bashrc PC snippets; update reminders fortune file
3 files changed,  +39, -1
M config/.local/fortune/reminders/reminders
+27, -1
 1@@ -60,7 +60,7 @@ Remember to use *CTRL+R* to fuzzy-find search through your shell history!
 2 %
 3 Consider body-doubling (with a friend, or with a YouTuber through a stream or video!) to get some work done.
 4 %
 5-Read a Markdown file on the terminal in style with *glow -p*.
 6+Read a Markdown file on the terminal in style with *glow*.
 7 %
 8 Play around with new & fun shell scripts using *gum*.
 9 %
10@@ -97,3 +97,29 @@ Work on one of your personal websites.
11 Add or remove items from your calendar.
12 %
13 Message your friends and catch up with them.
14+%
15+Charge your devices, especially your phone and music player.
16+%
17+Check the date and time of your next therapy session.
18+%
19+Try to drink less coffee. It makes you feel like shit, despite the energy boost.
20+%
21+Communication is always key. Talking things out helps.
22+%
23+Run *cheat command* to get a quick reminder of what a command can do.
24+%
25+Use your pomodoro timers if you're having a hard time focusing!
26+%
27+Make some edits in Photoshop if you're bored.
28+%
29+Play one of your CDs or Minidiscs on the stereo.
30+%
31+Read the poetry you have saved.
32+%
33+Run *arttime* or *playart* for a pretty terminal ASCII art screensaver.
34+%
35+See what family are up to if you're bored and wanna annoy them.
36+%
37+Listen to Juice=Juice's latest releases!
38+%
39+Catch up on the manga you read.
M config/.local/fortune/reminders/reminders.dat
+0, -0
M misc/.bashrc-snippets-pc
+12, -0
 1@@ -114,3 +114,15 @@ alias iconsubfol="find . -mindepth 2 -type f -print -exec mv {} . \;"
 2 cheat() {
 3 	curl cheat.sh/"$1"
 4 }
 5+
 6+# display random ASCII art from
 7+# custom dir of art in dotfiles
 8+# using arttime (github: poetaman/arttime)
 9+playart() {
10+	ARTDIR="/home/kat/Documents/Code/Git/-mine/dotfiles/config/.local/share/arttime/textart"
11+	ARTSHUF=$(find "$ARTDIR" -type f | shuf -n1)
12+
13+	for art in "$ARTSHUF"; do
14+		arttime --nolearn -a ${art} --ac 5
15+	done
16+}