We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 957eeae commit ad47438Copy full SHA for ad47438
kanban
@@ -54,6 +54,8 @@
54
#
55
# You should have received a copy of the GNU Affero General Public License
56
# along with this program. If not, see <http://www.gnu.org/licenses/>.
57
+deps="tput column pr gawk"
58
+for dep in $deps; do which $dep &>/dev/null || { echo "$dep-cmd not installed..aborting (maybe install coreutils util-linux pkgs?)"; exit 1; }; done
59
BOX=(┌ ─ ┐ └ ┘ │ ┤ ┴ ┬ ├ ┼)
60
BAR=(▁ ▂ ▃ ▄ ▅ ▆ ▆ ▇ ▇ '█' '█')
61
COL1="\033[0m"
@@ -118,6 +120,7 @@ createconfig(){
118
120
}
119
121
[[ ! -d ~/.kanban ]] && mkdir ~/.kanban
122
echo "$config_example" > ~/$FILE_CONF
123
+ touch ~/$FILE_CSV
124
125
126
tags(){
0 commit comments