Compare commits

..

12 Commits

7 changed files with 422 additions and 212 deletions

View File

@@ -13,14 +13,22 @@ with a CalDav server, such as [Radicale](https://radicale.org/), and a synchroni
Installation Installation
------------ ------------
Download the file `fzf-vjour` from the [latest release](https://github.com/baumea/fzf-vjour/releases/latest), or run `./scripts/build.sh`, then
copy `fzf-vjour` to your preferred location, e.g., `~/.local/bin`, and make it executable. ### Manual
Run `./scripts/build.sh`, then copy `fzf-vjour` to your preferred location, e.g., `~/.local/bin`, and make it executable.
### Requirements ### Requirements
This is a POSIX script with inline `awk` elements. This is a POSIX script with inline `awk` elements.
Make sure you have [fzf](https://github.com/junegunn/fzf) installed. Make sure you have [fzf](https://github.com/junegunn/fzf) installed.
I also suggest to install [batcat](https://github.com/sharkdp/bat) for colorful previews. I also suggest to install [batcat](https://github.com/sharkdp/bat) for colorful previews.
### Arch Linux
```bash
yay -S fzf-vjour-git
```
Configuration Configuration
-------------- --------------
This application is configured with a file located at `$HOME/.config/fzf-vjour/config`. This application is configured with a file located at `$HOME/.config/fzf-vjour/config`.
@@ -83,6 +91,16 @@ In addition, there are the following keybindings:
You may also invoke the script with `--help` to see further command-line options. You may also invoke the script with `--help` to see further command-line options.
Limitations
-----------
Here is a list of some currently present limitations.
- Timezone agnostic: Timezone specifications are ignored.
- Time agnostic: We use the date portion only of date-time specifications.
- No alarms or notifications
- No attachments
- No recurrences
License License
------- -------
This project is licensed under the [MIT License](./LICENSE). This project is licensed under the [MIT License](./LICENSE).

View File

@@ -1,34 +1,53 @@
function getcontent(content_line, prop) # unescape
{ # Isolate and unescape the content part of an iCalendar line.
return substr(content_line[prop], index(content_line[prop], ":") + 1); #
} # @local variables: i, c, c2, res
# @input str: String
function storetext_line(content_line, c, prop) # @return: Unescaped string
{ function unescape(str, i, c, c2, res) {
c[prop] = getcontent(content_line, prop); for(i=1; i<=length(str);i++) {
gsub("\\\\n", "\n", c[prop]); c = substr(str, i, 1)
gsub("\\\\N", "\n", c[prop]); if (c != "\\") {
gsub("\\\\,", ",", c[prop]); res = res c
gsub("\\\\;", ";", c[prop]); continue
gsub("\\\\\\\\", "\\", c[prop]); }
} i++
c2 = substr(str, i, 1)
BEGIN { FS = "[:;]"; } if (c2 == "n" || c2 == "N") {
/^BEGIN:(VJOURNAL|VTODO)/ { type = $2 } res = res "\n"
/^END:/ && $2 == type { exit } continue
/^(CATEGORIES|DESCRIPTION|SUMMARY|DUE)/ { prop = $1; content_line[prop] = $0; next; } }
/^[^ ]/ && prop { prop = ""; next; } # Alternatively, c2 is "\\" or "," or ";". In each case, append res with
/^ / && prop { content_line[prop] = content_line[prop] substr($0, 2); next; } # c2. If the strings has been escaped correctly, then the character c2
# cannot be anything else. To be fail-safe, simply append res with c2.
END { res = res c2
if (!type) {
exit
} }
return res
}
# getcontent
# Isolate content part of an iCalendar line, and unescape.
#
# @input str: String
# @return: Unescaped content part
function getcontent(str) {
return unescape(substr(str, index(str, ":") + 1))
}
BEGIN { FS = "[:;]"; }
/^BEGIN:(VJOURNAL|VTODO)/ { type = $2 }
/^END:/ && $2 == type { exit }
/^(CATEGORIES|DESCRIPTION|SUMMARY|DUE)/ { prop = $1; c[prop] = $0; next; }
/^[^ ]/ && prop { prop = ""; next; }
/^ / && prop { c[prop] = c[prop] substr($0, 2); next; }
END {
if (!type)
exit
# Process content lines # Process content lines
storetext_line(content_line, c, "CATEGORIES" ); c["CATEGORIES"] = getcontent(c["CATEGORIES"])
storetext_line(content_line, c, "DESCRIPTION"); c["DESCRIPTION"] = getcontent(c["DESCRIPTION"])
storetext_line(content_line, c, "SUMMARY" ); c["SUMMARY"] = getcontent(c["SUMMARY"])
storetext_line(content_line, c, "DUE" ); c["DUE"] = getcontent(c["DUE"])
# Print # Print
if (c["DUE"]) if (c["DUE"])
print "::: <| " substr(c["DUE"], 1, 4) "-" substr(c["DUE"], 5, 2) "-" substr(c["DUE"], 7, 2); print "::: <| " substr(c["DUE"], 1, 4) "-" substr(c["DUE"], 5, 2) "-" substr(c["DUE"], 7, 2);

View File

@@ -1,18 +1,48 @@
# unescape
# Isolate and unescape the content part of an iCalendar line.
#
# @local variables: i, c, c2, res
# @input str: String
# @return: Unescaped string
function unescape(str, i, c, c2, res) {
for(i=1; i<=length(str);i++) {
c = substr(str, i, 1)
if (c != "\\") {
res = res c
continue
}
i++
c2 = substr(str, i, 1)
if (c2 == "n" || c2 == "N") {
res = res "\n"
continue
}
# Alternatively, c2 is "\\" or "," or ";". In each case, append res with
# c2. If the strings has been escaped correctly, then the character c2
# cannot be anything else. To be fail-safe, simply append res with c2.
res = res c2
}
return res
}
# getcontent
# Isolate content part of an iCalendar line, and unescape.
#
# @input str: String
# @return: Unescaped content part
function getcontent(str) {
return unescape(substr(str, index(str, ":") + 1))
}
# print content of field `field` # print content of field `field`
BEGIN { FS = ":"; regex = "^" field; } BEGIN { FS = ":"; regex = "^" field; }
/^BEGIN:(VJOURNAL|VTODO)/ { type = $2 } /^BEGIN:(VJOURNAL|VTODO)/ { type = $2 }
/^END:/ && $2 == type { exit } /^END:/ && $2 == type { exit }
$0 ~ field { content = $0; next; } $0 ~ field { line = $0; next; }
/^ / && content { content = content substr($0, 2); next; } /^ / && line { line = line substr($0, 2); next; }
/^[^ ]/ && content { exit } /^[^ ]/ && line { exit }
END { END {
if (!type) { exit } if (!type) { exit }
# Process content line # Process line
content = substr(content, index(content, ":") + 1); print getcontent(line)
gsub("\\\\n", "\n", content);
gsub("\\\\N", "\n", content);
gsub("\\\\,", ",", content);
gsub("\\\\;", ";", content);
gsub("\\\\\\\\", "\\", content);
print content;
} }

View File

@@ -3,39 +3,57 @@
# See https://datatracker.ietf.org/doc/html/rfc5545 for the RFC 5545 that # See https://datatracker.ietf.org/doc/html/rfc5545 for the RFC 5545 that
# describes iCalendar, and its syntax # describes iCalendar, and its syntax
function getcontent(content_line, prop) # Make string single-line
{ #
return substr(content_line[prop], index(content_line[prop], ":") + 1); # @input str: String
# @return: String without newlines
function singleline(str) {
gsub("\\n", " ", str)
return str
} }
function storetext_line(content_line, c, prop) # Isolate and unescape the content part of an iCalendar line.
{ #
c[prop] = getcontent(content_line, prop); # @local variables: i, c, c2, res
gsub("\\\\n", " ", c[prop]); # @input str: String
gsub("\\\\N", " ", c[prop]); # @return: Unescaped string
gsub("\\\\,", ",", c[prop]); function unescape(str, i, c, c2, res) {
gsub("\\\\;", ";", c[prop]); for(i=1; i<=length(str);i++) {
gsub("\\\\\\\\", "\\", c[prop]); c = substr(str, i, 1)
#gsub(" ", "_", c[prop]); if (c != "\\") {
res = res c
continue
}
i++
c2 = substr(str, i, 1)
if (c2 == "n" || c2 == "N") {
res = res "\n"
continue
}
# Alternatively, c2 is "\\" or "," or ";". In each case, append res with
# c2. If the strings has been escaped correctly, then the character c2
# cannot be anything else. To be fail-safe, simply append res with c2.
res = res c2
}
return res
} }
function storeinteger(content_line, c, prop) # Isolate content part of an iCalendar line, and unescape.
{ #
c[prop] = getcontent(content_line, prop); # @input str: String
c[prop] = c[prop] ? c[prop] : 0; # @return: Unescaped content part
function getcontent(str) {
return unescape(substr(str, index(str, ":") + 1))
} }
function storedatetime(content_line, c, prop) # formatdate
{ # Generate kind-of-pretty date strings.
c[prop] = getcontent(content_line, prop); #
} # @local variables: ts, ts_y, ts_m, ts_d, delta
# @input date: Date in the format YYYYMMDD
function storedate(content_line, c, prop) # @input todaystamp: Today, seconds since epoch
{ # @return: string
c[prop] = substr(getcontent(content_line, prop), 1, 8); function formatdate(date, todaystamp, ts, ts_y, ts_m, ts_d, delta)
}
function formatdate(date, today, todaystamp, ts, ts_y, ts_m, ts_d, delta)
{ {
ts_y = substr(date, 1, 4); ts_y = substr(date, 1, 4);
ts_m = substr(date, 5, 2); ts_m = substr(date, 5, 2);
@@ -87,7 +105,6 @@ BEGIN {
RED = "\033[1;31m"; RED = "\033[1;31m";
WHITE = "\033[1;97m"; WHITE = "\033[1;97m";
CYAN = "\033[1;36m"; CYAN = "\033[1;36m";
FAINT = "\033[2m";
OFF = "\033[m"; OFF = "\033[m";
# For date comparision # For date comparision
@@ -99,9 +116,7 @@ BEGIN {
BEGINFILE { BEGINFILE {
type = ""; type = "";
prop = ""; prop = "";
delete content_line;
delete c; delete c;
} }
/^BEGIN:(VJOURNAL|VTODO)/ { /^BEGIN:(VJOURNAL|VTODO)/ {
@@ -114,7 +129,7 @@ BEGINFILE {
/^(CATEGORIES|DESCRIPTION|PRIORITY|STATUS|SUMMARY|COMPLETED|DUE|DTSTART|DURATION|CREATED|DTSTAMP|LAST-MODIFIED)/ { /^(CATEGORIES|DESCRIPTION|PRIORITY|STATUS|SUMMARY|COMPLETED|DUE|DTSTART|DURATION|CREATED|DTSTAMP|LAST-MODIFIED)/ {
prop = $1; prop = $1;
content_line[prop] = $0; c[prop] = $0;
next; next;
} }
/^[^ ]/ && prop { /^[^ ]/ && prop {
@@ -122,7 +137,7 @@ BEGINFILE {
next; next;
} }
/^ / && prop { /^ / && prop {
content_line[prop] = content_line[prop] substr($0, 2); c[prop] = c[prop] substr($0, 2);
next; next;
} }
@@ -146,26 +161,34 @@ ENDFILE {
collection = collection in collection2label ? collection2label[collection] : collection; collection = collection in collection2label ? collection2label[collection] : collection;
# Process content lines # Process content lines
storetext_line(content_line, c, "CATEGORIES" ); # strings
storetext_line(content_line, c, "DESCRIPTION" ); cat = singleline(unescape(getcontent(c["CATEGORIES"])))
storeinteger( content_line, c, "PRIORITY" ); des = singleline(unescape(getcontent(c["DESCRIPTION"])))
storetext_line(content_line, c, "STATUS" ); sta = singleline(unescape(getcontent(c["STATUS"])))
storetext_line(content_line, c, "SUMMARY" ); sum = singleline(unescape(getcontent(c["SUMMARY"])))
storedatetime( content_line, c, "COMPLETED" );
storedate( content_line, c, "DUE" ); # integers
storedate( content_line, c, "DTSTART" ); pri = unescape(getcontent(c["PRIORITY"]))
storedatetime( content_line, c, "DURATION" ); pri = pri ? pri + 0 : 0
storedatetime( content_line, c, "CREATED" );
storedatetime( content_line, c, "DTSTAMP" ); # dates
storedatetime( content_line, c, "LAST-MODIFIED"); due = substr(unescape(getcontent(c["DUE"])), 1, 8)
dts = substr(unescape(getcontent(c["DTSTART"])), 1, 8)
# date-times
com = unescape(getcontent(c["COMPLETED"]))
dur = unescape(getcontent(c["DURATION"]))
cre = unescape(getcontent(c["CREATED"]))
stp = unescape(getcontent(c["DTSTAMP"]))
lmd = unescape(getcontent(c["LAST-MODIFIED"]))
# Priority field, primarly used for sorting # Priority field, primarly used for sorting
priotext = ""; psort = 0;
prio = 0; priotext = ""
if (c["PRIORITY"] > 0) if (pri > 0)
{ {
priotext = "❗(" c["PRIORITY"] ") "; priotext = "❗(" pri ") "
prio = 10 - c["PRIORITY"]; psort = 10 - pri
} }
# Last modification/creation time stamp, used for sorting # Last modification/creation time stamp, used for sorting
@@ -173,7 +196,7 @@ ENDFILE {
# UTC time format # UTC time format
# DTSTAMP: mandatory field in VTODO and VJOURNAL, date-time in UTC time # DTSTAMP: mandatory field in VTODO and VJOURNAL, date-time in UTC time
# format # format
mod = c["LAST-MODIFIED"] ? c["LAST-MODIFIED"] : c["DTSTAMP"]; mod = lmd ? lmd : stp
# Date field. For VTODO entries, we show the due date, for journal entries, # Date field. For VTODO entries, we show the due date, for journal entries,
# the associated date. # the associated date.
@@ -183,38 +206,37 @@ ENDFILE {
if (type == "VTODO") if (type == "VTODO")
{ {
# Either DUE or DURATION may appear. If DURATION appears, then also DTSTART # Either DUE or DURATION may appear. If DURATION appears, then also DTSTART
d = c["DUE"] ? c["DUE"] : d = due ? due : (dur ? dts " for " dur : "");
(c["DURATION"] ? c["DTSTART"] " for " c["DURATION"] : ""); if (d && d <= today && sta != "COMPLETED")
if (d && d <= today && c["STATUS"] != "COMPLETED")
{ {
datecolor = RED; datecolor = RED;
summarycolor = RED; summarycolor = RED;
} }
} else { } else {
d = c["DTSTART"]; d = dts
} }
d = d ? formatdate(d, today, todaystamp ts, ts_y, ts_m, ts_d, delta) : " "; d = d ? formatdate(d, todaystamp) : " ";
# flag: - "journal" for VJOURNAL with DTSTART # flag: - "journal" for VJOURNAL with DTSTART
# - "note" for VJOURNAL without DTSTART # - "note" for VJOURNAL without DTSTART
# - "completed" for VTODO with c["STATUS"] == COMPLETED # - "completed" for VTODO with c["STATUS"] == COMPLETED
# - "open" for VTODO with c["STATUS"] != COMPLETED # - "open" for VTODO with c["STATUS"] != COMPLETED
if (type == "VTODO") if (type == "VTODO")
flag = c["STATUS"] == "COMPLETED" ? flag_completed : flag_open; flag = sta == "COMPLETED" ? flag_completed : flag_open;
else else
flag = c["DTSTART"] ? flag_journal : flag_note; flag = dts ? flag_journal : flag_note;
# summary # summary
# c["SUMMARY"] # c["SUMMARY"]
summary = c["SUMMARY"] ? c["SUMMARY"] : " " summary = sum ? sum : " "
# categories # categories
categories = c["CATEGORIES"] ? c["CATEGORIES"] : " " categories = cat ? cat : " "
# filename # filename
# FILENAME # FILENAME
print prio, print psort,
mod, mod,
fpath, fpath,
collection, collection,

View File

@@ -1,27 +1,44 @@
function escape_categories(str) # Escape string to be used as content in iCalendar files.
{ #
gsub("\\\\", "\\\\", str); # @input str: String to escape
gsub(";", "\\\\;", str); # @return: Escaped string
}
function escape(str) function escape(str)
{ {
escape_categories(str) gsub("\\\\", "\\\\", str)
gsub(",", "\\\\,", str); gsub(";", "\\;", str)
gsub(",", "\\,", str)
return str
} }
# Escape string to be used as content in iCalendar files.
#
# @input str: String to escape
# @return: Escaped string
function escape_categories(str)
{
gsub("\\\\", "\\\\", str)
gsub(";", "\\;", str)
return str
}
# Print property with its content and fold according to the iCalendar
# specification.
#
# @local variables: i, s
# @input nameparam: Property name with optional parameters
# @input content: Escaped content
function print_fold(nameparam, content, i, s) function print_fold(nameparam, content, i, s)
{ {
i = 74 - length(nameparam); i = 74 - length(nameparam)
s = substr(content, 1, i); s = substr(content, 1, i)
print nameparam s; print nameparam s
s = substr(content, i+1, 73); s = substr(content, i+1, 73)
i = i + 73; i = i + 73
while (s) while (s)
{ {
print " " s; print " " s
s = substr(content, i+1, 73); s = substr(content, i+1, 73)
i = i + 73; i = i + 73
} }
} }
@@ -30,7 +47,7 @@ BEGIN {
type = "VJOURNAL"; type = "VJOURNAL";
zulu = strftime("%Y%m%dT%H%M%SZ", systime(), 1); zulu = strftime("%Y%m%dT%H%M%SZ", systime(), 1);
} }
desc { desc = desc "\\n" $0; next; } desc { desc = desc "\\n" escape($0); next; }
{ {
if (substr($0, 1, 6) == "::: |>") if (substr($0, 1, 6) == "::: |>")
{ {
@@ -43,12 +60,12 @@ desc { desc = desc "\\n" $0; next; }
due = substr($0, 8); due = substr($0, 8);
getline; getline;
} }
summary = substr($0, 1, 2) != "# " ? "" : substr($0, 3); summary = substr($0, 1, 2) != "# " ? "" : escape(substr($0, 3));
getline; getline;
categories = substr($0, 1, 1) != ">" ? "" : substr($0, 3); categories = substr($0, 1, 1) != ">" ? "" : escape(substr($0, 3));
getline; # This line should be empty getline; # This line should be empty
getline; # First line of description getline; # First line of description
desc = $0; desc = escape($0);
next; next;
} }
END { END {
@@ -59,9 +76,6 @@ END {
cmd | getline res cmd | getline res
due = res ? res : "" due = res ? res : ""
} }
escape(summary);
escape(desc);
escape_categories(categories);
# print ical # print ical
print "BEGIN:VCALENDAR"; print "BEGIN:VCALENDAR";
@@ -88,9 +102,9 @@ END {
if (start) if (start)
print "DTSTART;VALUE=DATE:" start; print "DTSTART;VALUE=DATE:" start;
} }
if (summary) print_fold("SUMMARY:", summary, i, s); if (summary) print_fold("SUMMARY:", summary);
if (categories) print_fold("CATEGORIES:", categories, i, s); if (categories) print_fold("CATEGORIES:", categories);
if (desc) print_fold("DESCRIPTION:", desc, i, s); if (desc) print_fold("DESCRIPTION:", desc);
print "END:" type; print "END:" type;
print "END:VCALENDAR" print "END:VCALENDAR"
} }

View File

@@ -1,32 +1,44 @@
function getcontent(content_line, prop) # Escape string to be used as content in iCalendar files.
{ #
return substr(content_line[prop], index(content_line[prop], ":") + 1); # @input str: String to escape
} # @return: Escaped string
function escape_categories(str)
{
gsub("\\\\", "\\\\", str);
gsub(";", "\\\\;", str);
}
function escape(str) function escape(str)
{ {
escape_categories(str) gsub("\\\\", "\\\\", str)
gsub(",", "\\\\,", str); gsub(";", "\\;", str)
gsub(",", "\\,", str)
return str
} }
# Escape string to be used as content in iCalendar files.
#
# @input str: String to escape
# @return: Escaped string
function escape_categories(str)
{
gsub("\\\\", "\\\\", str)
gsub(";", "\\;", str)
return str
}
# Print property with its content and fold according to the iCalendar
# specification.
#
# @local variables: i, s
# @input nameparam: Property name with optional parameters
# @input content: Escaped content
function print_fold(nameparam, content, i, s) function print_fold(nameparam, content, i, s)
{ {
i = 74 - length(nameparam); i = 74 - length(nameparam)
s = substr(content, 1, i); s = substr(content, 1, i)
print nameparam s; print nameparam s
s = substr(content, i+1, 73); s = substr(content, i+1, 73)
i = i + 73; i = i + 73
while (s) while (s)
{ {
print " " s; print " " s
s = substr(content, i+1, 73); s = substr(content, i+1, 73)
i = i + 73; i = i + 73
} }
} }
@@ -45,25 +57,22 @@ ENDFILE {
cmd | getline res cmd | getline res
due = res ? res : "" due = res ? res : ""
} }
escape(summary);
escape(desc);
escape_categories(categories);
} }
} }
NR == FNR && desc { desc = desc "\\n" $0; next; } NR == FNR && desc { desc = desc "\\n" escape($0); next; }
NR == FNR { NR == FNR {
if (substr($0, 1, 6) == "::: <|") if (substr($0, 1, 6) == "::: <|")
{ {
due = substr($0, 8); due = substr($0, 8);
getline; getline;
} }
summary = substr($0, 1, 2) != "# " ? "" : substr($0, 3); summary = substr($0, 1, 2) != "# " ? "" : escape(substr($0, 3));
getline; getline;
categories = substr($0, 1, 1) != ">" ? "" : substr($0, 3); categories = substr($0, 1, 1) != ">" ? "" : escape_categories(substr($0, 3));
getline; # This line should be empty getline; # This line should be empty
getline; # First line of description getline; # First line of description
desc = $0; desc = escape($0);
next; next;
} }
@@ -77,9 +86,9 @@ NR == FNR {
print "SEQUENCE:" seq; print "SEQUENCE:" seq;
print "LAST-MODIFIED:" zulu; print "LAST-MODIFIED:" zulu;
if (due) print "DUE;VALUE=DATE:" due; if (due) print "DUE;VALUE=DATE:" due;
print_fold("SUMMARY:", summary, i, s); print_fold("SUMMARY:", summary);
print_fold("CATEGORIES:", categories, i, s); print_fold("CATEGORIES:", categories);
print_fold("DESCRIPTION:", desc, i, s); print_fold("DESCRIPTION:", desc);
type = ""; type = "";
} }
{ print } { print }

View File

@@ -110,34 +110,64 @@ __lines() {
# Program starts here # Program starts here
if [ "${1:-}" = "--help" ]; then if [ "${1:-}" = "--help" ]; then
echo "Usage: $0 [OPTION]" shift
echo "" echo "Usage: $0 [--help | --new [FILTER..] | [FILTER..] ]
echo "You may specify at most one option." --help Show this help and exit
echo " --help Show this help and exit" --new Create new entry and do not exit
echo " --tasks Show tasks only" --git-init Activate git usage and exit
echo " --no-tasks Ignore tasks" --git <cmd> Run git command and exit
echo " --notes Show notes only"
echo " --no-notes Ignore notes" [FILTER]
echo " --journal Show journal only" You may specify any of these filters. Filters can be negated using the
echo " --no-journal Ignore journal" --no-... versions, e.g., --no-tasks. Multiple filters are applied in
echo " --completed Show completed tasks only" conjuction. By default, the filter --no-completed is used. Note that
echo " --no-completed Ignore completed tasks" --no-completed is not the same as --open, and similarly, --no-open is not the
echo " --new Create new entry" same as --completed.
echo ""
echo "The following options are for internal use." --tasks Show tasks only
echo " --reload Reload list" --notes Show notes only
echo " --preview <selection> Generate preview" --journal Show jounral only
echo " --delete <selection> Delete selected entry" --completed Show completed tasks only
echo " --decrease-priority <selection> Decrease priority of selected task" --open Show open tasks only
echo " --increase-priority <selection> Increase priority of selected task" --filter <query> Specify custom query"
echo " --toggle-completed <selection> Toggle completion flag of task" exit
fi
# Git
if command -v "git" >/dev/null && [ -d "$ROOT/.git" ]; then
GIT="git -C $ROOT"
fi
if [ "${1:-}" = "--git-init" ]; then
shift
if [ -n "${GIT:-}" ]; then
err "Git already enabled"
return 1
fi
if ! command -v "git" >/dev/null; then
err "Git not installed"
return 1
fi
git -C "$ROOT" init
git -C "$ROOT" add -A
git -C "$ROOT" commit -m 'Initial commit: Start git tracking'
exit
fi
if [ "${1:-}" = "--git" ]; then
shift
if [ -z "${GIT:-}" ]; then
err "Git not supported, run \`$0 --git-init\` first"
return 1
fi
$GIT "$@"
exit exit
fi fi
# Command line arguments to be self-contained # Command line arguments to be self-contained
# Generate preview of file from selection # Generate preview of file from selection
if [ "${1:-}" = "--preview" ]; then if [ "${1:-}" = "--preview" ]; then
name=$(echo "$2" | cut -d ' ' -f 3) shift
name=$(echo "$1" | cut -d ' ' -f 3)
shift
file="$ROOT/$name" file="$ROOT/$name"
awk -v field="DESCRIPTION" "$AWK_GET" "$file" | awk -v field="DESCRIPTION" "$AWK_GET" "$file" |
$CAT $CAT
@@ -145,7 +175,9 @@ if [ "${1:-}" = "--preview" ]; then
fi fi
# Delete file from selection # Delete file from selection
if [ "${1:-}" = "--delete" ]; then if [ "${1:-}" = "--delete" ]; then
name=$(echo "$2" | cut -d ' ' -f 3) shift
name=$(echo "$1" | cut -d ' ' -f 3)
shift
file="$ROOT/$name" file="$ROOT/$name"
summary=$(awk -v field="SUMMARY" "$AWK_GET" "$file") summary=$(awk -v field="SUMMARY" "$AWK_GET" "$file")
while true; do while true; do
@@ -154,6 +186,10 @@ if [ "${1:-}" = "--delete" ]; then
case $yn in case $yn in
"yes") "yes")
rm -v "$file" rm -v "$file"
if [ -n "$GIT" ]; then
$GIT add "$file"
$GIT commit -q -m "File deleted" -- "$file"
fi
break break
;; ;;
"no") "no")
@@ -167,6 +203,7 @@ if [ "${1:-}" = "--delete" ]; then
fi fi
# Generate new entry # Generate new entry
if [ "${1:-}" = "--new" ]; then if [ "${1:-}" = "--new" ]; then
shift
collection=$(echo "$COLLECTION_LABELS" | tr ';' '\n' | $FZF --delimiter='=' --with-nth=2 --accept-nth=1) collection=$(echo "$COLLECTION_LABELS" | tr ';' '\n' | $FZF --delimiter='=' --with-nth=2 --accept-nth=1)
file="" file=""
while [ -f "$file" ] || [ -z "$file" ]; do while [ -f "$file" ] || [ -z "$file" ]; do
@@ -191,65 +228,122 @@ if [ "${1:-}" = "--new" ]; then
tmpfile="$tmpmd.ics" tmpfile="$tmpmd.ics"
awk -v uid="$uuid" "$AWK_NEW" "$tmpmd" >"$tmpfile" awk -v uid="$uuid" "$AWK_NEW" "$tmpmd" >"$tmpfile"
mv "$tmpfile" "$file" mv "$tmpfile" "$file"
if [ -n "$GIT" ]; then
$GIT add "$file"
$GIT commit -q -m "File added" -- "$file"
fi
fi fi
rm "$tmpmd" rm "$tmpmd"
fi fi
# Toggle completed flag # Toggle completed flag
if [ "${1:-}" = "--toggle-completed" ]; then if [ "${1:-}" = "--toggle-completed" ]; then
name=$(echo "$2" | cut -d ' ' -f 3) shift
name=$(echo "$1" | cut -d ' ' -f 3)
shift
file="$ROOT/$name" file="$ROOT/$name"
tmpfile=$(mktemp) tmpfile=$(mktemp)
awk "$AWK_ALTERTODO" "$file" >"$tmpfile" awk "$AWK_ALTERTODO" "$file" >"$tmpfile"
mv "$tmpfile" "$file" mv "$tmpfile" "$file"
if [ -n "$GIT" ]; then
$GIT add "$file"
$GIT commit -q -m "Completed toggle" -- "$file"
fi
fi fi
# Increase priority # Increase priority
if [ "${1:-}" = "--increase-priority" ]; then if [ "${1:-}" = "--increase-priority" ]; then
name=$(echo "$2" | cut -d ' ' -f 3) shift
name=$(echo "$1" | cut -d ' ' -f 3)
shift
file="$ROOT/$name" file="$ROOT/$name"
tmpfile=$(mktemp) tmpfile=$(mktemp)
awk -v delta="1" "$AWK_ALTERTODO" "$file" >"$tmpfile" awk -v delta="1" "$AWK_ALTERTODO" "$file" >"$tmpfile"
mv "$tmpfile" "$file" mv "$tmpfile" "$file"
if [ -n "$GIT" ]; then
$GIT add "$file"
$GIT commit -q -m "Priority increased" -- "$file"
fi
fi fi
# Decrease priority # Decrease priority
if [ "${1:-}" = "--decrease-priority" ]; then if [ "${1:-}" = "--decrease-priority" ]; then
name=$(echo "$2" | cut -d ' ' -f 3) shift
name=$(echo "$1" | cut -d ' ' -f 3)
shift
file="$ROOT/$name" file="$ROOT/$name"
tmpfile=$(mktemp) tmpfile=$(mktemp)
awk -v delta="-1" "$AWK_ALTERTODO" "$file" >"$tmpfile" awk -v delta="-1" "$AWK_ALTERTODO" "$file" >"$tmpfile"
mv "$tmpfile" "$file" mv "$tmpfile" "$file"
if [ -n "$GIT" ]; then
$GIT add "$file"
$GIT commit -q -m "Priority decreased" -- "$file"
fi
fi fi
# Reload view
if [ "${1:-}" = "--reload" ]; then if [ "${1:-}" = "--reload" ]; then
shift
__lines __lines
exit exit
fi fi
query="${FZF_QUERY:-}" while [ -n "${1:-}" ]; do
if [ "${1:-}" = "--no-completed" ]; then case "${1:-}" in
query="!✅" "--completed")
fi shift
if [ "${1:-}" = "--completed" ]; then cliquery="${cliquery:-}"
query="✅" ;;
fi "--no-completed")
if [ "${1:-}" = "--tasks" ]; then shift
query="✅ | 🔲" cliquery="${cliquery:-} !✅"
fi ;;
if [ "${1:-}" = "--no-tasks" ]; then "--open")
query="!✅ !🔲" shift
fi cliquery="${cliquery:-} 🔲"
if [ "${1:-}" = "--notes" ]; then ;;
query="🗒️" "--no-open")
fi shift
if [ "${1:-}" = "--no-notes" ]; then cliquery="${cliquery:-} !🔲"
query="!🗒️" ;;
fi "--tasks")
if [ "${1:-}" = "--journal" ]; then shift
query="📘" cliquery="${cliquery:-} ✅ | 🔲"
fi ;;
if [ "${1:-}" = "--no-journal" ]; then "--no-tasks")
query="!📘" shift
fi cliquery="${cliquery:-} !✅ !🔲"
query=${query:-!✅} ;;
query=$(echo "$query" | xargs) "--notes")
shift
cliquery="${cliquery:-} 🗒️"
;;
"--no-notes")
shift
cliquery="${cliquery:-} !🗒️"
;;
"--journal")
shift
cliquery="${cliquery:-} 📘"
;;
"--no-journal")
shift
cliquery="${cliquery:-} !📘"
;;
"--filter")
shift
cliquery="${cliquery:-} $1"
shift
;;
"--no-filter")
shift
cliquery="${cliquery:-} !$1"
shift
;;
*)
err "Unknown option \"$1\""
exit 1
;;
esac
done
query=${cliquery:-${FZF_QUERY:-!✅}}
query=$(echo "$query" | sed "s/^ *//" | sed "s/ *$//")
selection=$( selection=$(
__lines | $FZF --ansi \ __lines | $FZF --ansi \
@@ -296,6 +390,10 @@ if [ "$checksum" != "$(cksum "$filetmp")" ]; then
file_new="$filetmp.ics" file_new="$filetmp.ics"
awk "$AWK_UPDATE" "$filetmp" "$file" >"$file_new" awk "$AWK_UPDATE" "$filetmp" "$file" >"$file_new"
mv "$file_new" "$file" mv "$file_new" "$file"
if [ -n "$GIT" ]; then
$GIT add "$file"
$GIT commit -q -m "File modified" -- "$file"
fi
fi fi
rm "$filetmp" rm "$filetmp"