Guest User

todosh_config

a guest
Jun 29th, 2026
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. export TODO_DIR="<your dir>"
  2. export TODO_FILE="$TODO_DIR/todo.txt"
  3. export DONE_FILE="$TODO_DIR/done.txt"
  4. export REPORT_FILE="$TODO_DIR/report.txt"
  5. export TODO_ACTIONS_DIR="$TODO_DIR/.todo.actions.d"
  6.  
  7. export TODOTXT_AUTO_ARCHIVE=0
  8. export TODOTXT_DEFAULT_ACTION=ls
  9. export TODOTXT_PRESERVE_LINE_NUMBERS=1
  10. #export TODOTXT_SORT_COMMAND='sort'
  11. #export TODOTXT_DATE_ON_ADD=1
  12.  
  13. ### === HIGH-COLOR === compatible with most terms including putty
  14. ### for windows... use colors that don't make your eyes bleed :)
  15. export PINK='\\033[38;5;211m'
  16. export ORANGE='\\033[38;5;203m'
  17. export SKYBLUE='\\033[38;5;111m'
  18. export MEDIUMGREY='\\033[38;5;246m'
  19. export LAVENDER='\\033[38;5;183m'
  20. export TAN='\\033[38;5;179m'
  21. export FOREST='\\033[38;5;22m'
  22. export MAROON='\\033[38;5;52m'
  23. export HOTPINK='\\033[38;5;198m'
  24. export MINTGREEN='\\033[38;5;121m'
  25. export LIGHTORANGE='\\033[38;5;215m'
  26. export LIGHTRED='\\033[38;5;203m'
  27. export JADE='\\033[38;5;35m'
  28. export LIME='\\033[38;5;154m'
  29.  
  30. ### background colors
  31. export PINK_BG='\\033[48;5;211m'
  32. export ORANGE_BG='\\033[48;5;203m'
  33. export SKYBLUE_BG='\\033[48;5;111m'
  34. export MEDIUMGREY_BG='\\033[48;5;246m'
  35. export LAVENDER_BG='\\033[48;5;183m'
  36. export TAN_BG='\\033[48;5;179m'
  37. export FOREST_BG='\\033[48;5;22m'
  38. export MAROON_BG='\\033[48;5;52m'
  39. export HOTPINK_BG='\\033[48;5;198m'
  40. export MINTGREEN_BG='\\033[48;5;121m'
  41. export LIGHTORANGE_BG='\\033[48;5;215m'
  42. export LIGHTRED_BG='\\033[48;5;203m'
  43. export JADE_BG='\\033[48;5;35m'
  44. export LIME_BG='\\033[48;5;154m'
  45. ### extra attributes
  46. export UNDERLINE='\\033[4m'
  47.  
  48.  
  49. # === COLORS ===
  50. export PRI_D=$PINK
  51. export PRI_E=$JADE
  52. export PRI_F=$ORANGE
  53. export PRI_G=$SKYBLUE
  54. export PRI_H=$LIGHTORANGE
  55. export PRI_I=$LIME
  56. export PRI_K=$MINTGREEN
  57.  
Advertisement
Add Comment
Please, Sign In to add comment