Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.54 KB | None | 0 0
  1. #!/usr/bin/conky -d -c
  2. ## .conkyrc configuration
  3.  
  4. # Forge to background
  5. background yes
  6.  
  7. # Default Fonts
  8. use_xft yes
  9. xftfont Meslo LG M:size=9
  10. #xftfont Bitstream Vera Sans Mono:size=9
  11. #xftfont Droid Sans Mono:size=9
  12. override_utf8_locale yes
  13.  
  14. # Performance Settings
  15. double_buffer yes
  16. update_interval 0.5
  17. #update_interval_on_battery 1.0
  18. total_run_times 0
  19. # net_avg_samples 2
  20. text_buffer_size 20480
  21.  
  22. # Window Settings
  23. own_window yes
  24. own_window_type normal
  25. own_window_transparent yes
  26. own_window_argb_visual yes
  27. #own_window_argb_value 200
  28. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  29.  
  30. # Window border
  31. draw_borders no
  32. draw_shades no
  33. draw_graph_borders no
  34.  
  35. # Default Color
  36. default_color 444444
  37.  
  38. # Size and position
  39. minimum_size 200
  40. maximum_width 1280
  41. gap_x 90
  42. gap_y 75
  43. alignment top_left
  44. use_spacer right
  45. extra_newline yes
  46.  
  47. # Display
  48. short_units yes
  49.  
  50. TEXT
  51. # CALENDAR
  52. #${execpi 10 remind /home/tungd/Dropbox/GTD/reminder.rem}
  53. #
  54. # CHEAT SHEET
  55. #${voffset 50}
  56. #${offset 730}${color #111111}${font Meslo LG L DZ:bold:size=10}CHEAT SHEET${font}${color}
  57. #${offset 730}- Hotkeys:
  58. #${offset 760}* Alt + Q: Quick add
  59. #${offset 730}- Projects:
  60. #${offset 760}${execi 30 ~/cli/bin/todo -P -d ~/cli/support/todo-nc.cfg listproj}
  61. #${offset 730}- Contexts:
  62. #${offset 760}${execi 30 ~/cli/bin/todo -P -d ~/cli/support/todo-nc.cfg listcon}
  63. #
  64. # REAL STUFF
  65. #
  66. ${offset 635}${font Meslo LG L:bold:size=10}${color #252525}CHEAT SHEET${color}${font}
  67. ${offset 635}${font Meslo LG L:bold:size=10}TM: COLLECT STUFF AND DUMP IT INTO TASKPAPER${font}
  68. ${offset 635}Projects: ${execi 30 ~/cli/bin/todo -P -d ~/cli/support/todo-nc.cfg listproj | tr "\n" " " | sed -e 's/\ @/,\ @/g' | par -w75}
  69. ${offset 635}Contexts: ${execi 30 ~/cli/bin/todo -P -d ~/cli/support/todo-nc.cfg listcon | tr "\n" " " | sed -e 's/\ +/,\ +/g' | par -w75}
  70. ${offset 635}--
  71. ${offset 635}
  72. ${offset 635}${font Meslo LG L:bold:size=10}${color #252525}GIT WORKFLOW${color}${font}
  73. ${offset 635}* checkout master -> fetch + merge from upstream
  74. ${offset 635} `-> merge local change -> push origin -> send pull request
  75. ${offset 635}--
  76. ${offset 635}
  77. ${offset 635}${font Meslo LG L:bold:size=10}${color #252525}GTD WORKFLOW${color}${font}
  78. ${offset 635}stuff -> actionable?
  79. ${offset 635} |-- no
  80. ${offset 635} | |-- Trash
  81. ${offset 635} | |-- Someday/maybe
  82. ${offset 635} | `-- Reference
  83. ${offset 635} `-- yes
  84. ${offset 635} |-- project?
  85. ${offset 635} | |-- Projects
  86. ${offset 635} | `-- Project plans
  87. ${offset 635} `-- take less than 2 mins?
  88. ${offset 635} |-- no
  89. ${offset 635} | |-- Waiting
  90. ${offset 635} | |-- Calendar
  91. ${offset 635} | `-- To-do list
  92. ${offset 635} `-- Do it!
  93.  
  94.  
  95. ${voffset -490}
  96. ${font Meslo LG L DZ:bold:size=10}${color #000000}TODO${color}${font}
  97. ${execpi 10 ~/cli/bin/todo -P -d ~/cli/support/todo-nc.cfg ls}
  98. --
  99.  
  100. #${font Meslo LG L DZ:bold:size=10}${color #111111}REMINDER${color}${font}
  101. #${execpi 120 remind -m /home/tungd/Dropbox/GTD/reminder.rem}
  102. #--
  103. #
  104. # Old agenda (simple calendar)
  105. #${font Meslo LG L DZ:bold:size=10}${color #111111}AGENDA${color}${font}
  106. #${execpi 120 remind -m -s+2 ~/Dropbox/GTD/reminder.rem}
  107. #--
  108. #
  109. # New agenda (real calendar)
  110. ${font Meslo LG L DZ:bold:size=10}${color #000000}AGENDA${color}${font}
  111. ${font DejaVu Sans Mono:size=9}${execpi 120 remind -m -c+1 -w90 media/Data/Documents/GTD/reminder.rem `date --date=tomorrow +%Y-%m-%d`}${font}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement