This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- TODO Important stuff [[Tue, 6th May 2025]] | |
priority:: 4 | |
suggestions:: 🧩 Fit into next free slot, ⏰ Set a quick reminder, ⚡ Handle right away | |
urgency:: 🔴 | |
impact:: 🟡 | |
effort:: 🟢 | |
pomodoro:: {{renderer :pomodoro_pevja,25}} | |
:LOGBOOK: | |
CLOCK: [2025-05-06 Tue 06:01:51]--[2025-05-06 Tue 06:01:52] => 00:00:01 | |
:END: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo ========== | |
echo Check root | |
echo ========== | |
if [[ $UID == 0 ]]; then | |
echo "Please run this script WITHOUT sudo:" | |
echo "$0 $*" | |
exit 1 | |
fi |