mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2025-08-07 06:47:19 +02:00
accidentally turn motivational message into markdown
This commit is contained in:
parent
79eedbf33f
commit
49f0a4be78
36
.mikaela/motivational-message.md
Normal file
36
.mikaela/motivational-message.md
Normal file
@ -0,0 +1,36 @@
|
||||
<!--# This file is read by my {zsh,bash}rc if current user is either aminda
|
||||
# or mikaela, or alternatively something hardware specific such as deck.
|
||||
# The reading command is either of the two:
|
||||
# `bat -f --style=plain --italic-text=always $HOME/.shell-things/.mikaela/motivational-message.md | \grep -v '#'`
|
||||
# `tail -n +1 $HOME/.shell-things/.mikaela/motivational-message.md | grep -v '#'`
|
||||
# Older motivational messages are stored in case bringing them back is
|
||||
# desired later. Don't forget, this is a living document.-->
|
||||
|
||||
_Aferoj emas funkcii sin mem..._ **OM MANI PEME HUNG...**
|
||||
|
||||
<!--# Tavun OM värähtely poistaa ylpeyttä, MA kateutta, NI takertumista. PE
|
||||
# leikkaa tietämättömyyden läpi, ME hälventää ahneuden ja rintakehässä
|
||||
# värähtelevä HUNG muuntaa vihan.
|
||||
# Kuinka asiat ovat (s. 74-75) - Lama Ole Nydahl -->
|
||||
|
||||
> They say that I must learn to kill before I can feel safe. But I, I'd rather
|
||||
> kill myself then turn into their slave.
|
||||
|
||||
<!--# The Rasmus: In the Shadows-->
|
||||
|
||||
**MEMENTO VIVERE!** Advice, total nonsense or something between:
|
||||
|
||||
- **Stand out!** Otherwise there is no diversity, no comfort zone, just nazis
|
||||
as not standing out means obeying in advance. _Act Like You Belong and
|
||||
Belong You Shall._
|
||||
- **Know fear. Face fear. Break the Spiral of Silence.** _"Fear is the tool of
|
||||
tyrants"_
|
||||
- Be their fears. _Queer propawganda_ to remind them we are people.
|
||||
_Naturist_ to remind they are the same as us under their covers.
|
||||
- Leave the world a better place than you found it. Remember **EMPATHY**,
|
||||
**SYMPATHY** and **COMPASSION!** Let them lead you to **KINDNESS!**
|
||||
- Remember them towards everyone. _Everyone includes you._ Respect your
|
||||
boundaries as well, you can say "no" and continue your path without
|
||||
explanations.
|
||||
|
||||
> May your heart be your guiding key
|
@ -1,49 +0,0 @@
|
||||
# This file is read by my {zsh,bash}rc if current user is either aminda
|
||||
# or mikaela, or alternatively something hardware specific such as deck.
|
||||
# The reading command is:
|
||||
# tail -n +1 $HOME/.shell-things/.mikaela/motivational-message.txt | grep -v '#'
|
||||
# Older motivational messages are stored in case bringing them back is
|
||||
# desired later. Don't forget, this is a living document.
|
||||
|
||||
Aferoj emas funkcii sin mem... OM MANI PEME HUNG...
|
||||
# Tavun OM värähtely poistaa ylpeyttä, MA kateutta, NI takertumista. PE
|
||||
# leikkaa tietämättömyyden läpi, ME hälventää ahneuden ja rintakehässä
|
||||
# värähtelevä HUNG muuntaa vihan.
|
||||
# Kuinka asiat ovat (s. 74-75) - Lama Ole Nydahl
|
||||
#
|
||||
# Here is a test to find whether your mission on earth is finished:
|
||||
# If you’re alive, it isn’t.
|
||||
# You are a perfect expression of perfect Love, here and now.
|
||||
# Illusions I & II - Richard Bach
|
||||
|
||||
> They say that I must learn to kill before I can feel safe. But I,
|
||||
> I'd rather kill myself then turn into their slave.
|
||||
# The Rasmus: In the Shadows
|
||||
|
||||
MEMENTO VIVERE! Advice, total nonsense or something between:
|
||||
|
||||
* Stand out! Otherwise there is no diversity, no comfort zone, just
|
||||
nazis as not standing out means obeying in advance. Act Like You
|
||||
Belong and Belong You Shall.
|
||||
* Know fear. Face {it,them}. Break the Spiral of Silence. "Fear is the
|
||||
tool of tyrants"
|
||||
* Be their fears. Queer propawganda to remind them we are people.
|
||||
Naturist to remind they are the same as us under their covers.
|
||||
# Memoru ankauh
|
||||
# - Know fear. Face fears. Don't obey in advance! Fluff the SPOTLIGHT
|
||||
# EFFECT! Break the SPIRAL OF SILENCE!
|
||||
# - Be the gay propawganda they are so afraid of! Wear pride, be
|
||||
# genderqueer, unshaved, unashamedly braless!
|
||||
# - Act Like You Belong. And you shall belong.
|
||||
* Leave the world a better place than you found it. Remember
|
||||
EMPATHY, SYMPATHY and COMPASSION! Let them lead you to KINDNESS!
|
||||
* Remember them towards everyone. Everyone includes you. Respect your
|
||||
boundaries as well, you can say "no" and continue your path without
|
||||
explanations.
|
||||
# - Remember your own boundaries too, you too are allowed to say no
|
||||
# and continue walking past without explaining yourself! They are
|
||||
# afraid of your judgment too employed right now or not.
|
||||
* May your heart be your guiding key ;)
|
||||
#
|
||||
#Make your tech grayscale painting your life with colours
|
||||
|
@ -167,13 +167,13 @@ if hash lsb_release 2> /dev/null; then
|
||||
|
||||
# Only print motivational phrases if username is aminda or mikaela or deck
|
||||
if [[ $(whoami) == aminda ]] || [[ $(whoami) == mikaela ]] || [[ $(whoami) == deck ]]; then
|
||||
if [ -f $HOME/.shell-things/.mikaela/motivational-message.txt ]; then
|
||||
if [ -f $HOME/.shell-things/.mikaela/motivational-message.md ]; then
|
||||
# Confusion between bat and batcula is not a concern at this
|
||||
# point.
|
||||
if hash bat 2> /dev/null; then
|
||||
bat -l markdown -f --style=plain $HOME/.shell-things/.mikaela/motivational-message.txt | \grep -v '#'
|
||||
bat --force-colorization --italic-text=always --style=plain $HOME/.shell-things/.mikaela/motivational-message.md | \grep -v '#'
|
||||
else
|
||||
tail -n +1 $HOME/.shell-things/.mikaela/motivational-message.txt | grep -v '#'
|
||||
tail -n +1 $HOME/.shell-things/.mikaela/motivational-message.md | grep -v '#'
|
||||
fi
|
||||
fi
|
||||
elif [[ "$(id -u)" == "0" ]]; then
|
||||
|
6
rc/zshrc
6
rc/zshrc
@ -63,13 +63,13 @@ if hash lsb_release 2> /dev/null; then
|
||||
|
||||
# Only print motivational phrases if username is aminda or mikaela or deck
|
||||
if [[ $(whoami) == aminda ]] || [[ $(whoami) == mikaela ]] || [[ $(whoami) == deck ]]; then
|
||||
if [ -f $HOME/.shell-things/.mikaela/motivational-message.txt ]; then
|
||||
if [ -f $HOME/.shell-things/.mikaela/motivational-message.md ]; then
|
||||
# Confusion between bat and batcula is not a concern at this
|
||||
# point.
|
||||
if hash bat 2> /dev/null; then
|
||||
bat -l markdown -f --style=plain $HOME/.shell-things/.mikaela/motivational-message.txt | \grep -v '#'
|
||||
bat --force-colorization --italic-text=always --style=plain $HOME/.shell-things/.mikaela/motivational-message.md | \grep -v '#'
|
||||
else
|
||||
tail -n +1 $HOME/.shell-things/.mikaela/motivational-message.txt | grep -v '#'
|
||||
tail -n +1 $HOME/.shell-things/.mikaela/motivational-message.md | grep -v '#'
|
||||
fi
|
||||
fi
|
||||
elif [[ "$(id -u)" == "0" ]]; then
|
||||
|
Loading…
x
Reference in New Issue
Block a user