update bugwarrior
This commit is contained in:
parent
5421d44a22
commit
9b6e99b5e3
2 changed files with 10 additions and 11 deletions
|
@ -41,8 +41,7 @@
|
||||||
|
|
||||||
components.gui.taskwarrior.config = {
|
components.gui.taskwarrior.config = {
|
||||||
general = {
|
general = {
|
||||||
targets = [ "terranix" "github_private" ];
|
targets = [ "terranix" "my_github" ];
|
||||||
#targets = [ "terranix" "github_private" "jobrad" ];
|
|
||||||
static_fields = "priority";
|
static_fields = "priority";
|
||||||
log_level = "INFO";
|
log_level = "INFO";
|
||||||
};
|
};
|
||||||
|
@ -60,16 +59,16 @@
|
||||||
include_user_issues = false;
|
include_user_issues = false;
|
||||||
include_user_repos = false;
|
include_user_repos = false;
|
||||||
};
|
};
|
||||||
github_private = {
|
my_github = {
|
||||||
service = "github";
|
service = "github";
|
||||||
login = "mrVanDalo";
|
login = "mrVanDalo";
|
||||||
token = "@oracle:eval:${pkgs.pass}/bin/pass development/github/mrVanDalo/bugwarriorAccessToken";
|
token = "@oracle:eval:${pkgs.pass}/bin/pass development/github/mrVanDalo/bugwarriorAccessToken";
|
||||||
username = "mrVanDalo";
|
username = "mrVanDalo";
|
||||||
description_template = "{{githubtitle}} {{githuburl}}";
|
description_template = "{{githubtitle}} {{githuburl}}";
|
||||||
add_tags = "github";
|
add_tags = "github";
|
||||||
involved_issues = true;
|
|
||||||
include_user_issues = true;
|
include_user_issues = true;
|
||||||
include_user_repos = true;
|
include_user_repos = true;
|
||||||
|
exclude_repos = [ "azubi" "csv-to-qif" "stepp0r" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
color(){
|
color() {
|
||||||
for c; do
|
for c; do
|
||||||
printf '\e[48;5;%dm%03d' $c $c
|
printf '\e[48;5;%dm%03d' $c $c
|
||||||
done
|
done
|
||||||
printf '\e[0m \n'
|
printf '\e[0m \n'
|
||||||
}
|
}
|
||||||
|
|
||||||
IFS=$' \t\n'
|
IFS=$' \t\n'
|
||||||
color {0..15}
|
color {0..15}
|
||||||
for ((i=0;i<6;i++)); do
|
for ((i = 0; i < 6; i++)); do
|
||||||
color $(seq $((i*36+16)) $((i*36+51)))
|
color $(seq $((i * 36 + 16)) $((i * 36 + 51)))
|
||||||
done
|
done
|
||||||
color {232..255}
|
color {232..255}
|
||||||
|
|
Loading…
Reference in a new issue