From Gregory Mullen to ~sircmpwn/writefreesoftware.org
A friend and I were talking about writefreesoftware.org and we both agreed the
site felt striking or required effort to read. The hard contrast of the dark
theme feels very strong and bold. Which IMO isn't the best feel for the goal of
attempting to welcome new coders and convince them to "join" free software.
Softening the bright white text to a pastel, and the default theme from a cold
blue to a warm orange makes it not only easier to read, but gives it a much more
welcoming feel. I linked some sample images below, but haven't changed the color
on the SVG because I didn't know how, wasn't convinced they *should* be change
and was afraid to invest the time if no one else agreed in softening the colors.
https://gr.ht/i/wfs-0.png
https://gr.ht/i/wfs-1.png
https://gr.ht/i/wfs-2.png
[message trimmed]
From Gregory Mullen to ~sircmpwn/aerc
Credit for this fix goes to Reto; I guess if we're not gonna be mutt we should probabaly do things correctly. --- commands/account/cf.go | 3 ++- commands/commands.go | 23 +++++++++++++++++++++++ commands/msg/move.go | 3 ++- widgets/dirlist.go | 6 +++++- 4 files changed, 32 insertions(+), 3 deletions(-) diff --git a/commands/account/cf.go b/commands/account/cf.go index 197e956..6c928ea 100644 --- a/commands/account/cf.go +++ b/commands/account/cf.go [message trimmed]
From Gregory Mullen to ~sircmpwn/aerc
Not included is support for :mkdir. It's meanless to add it at this point because partal completion isn't implemented yet. --- commands/account/cf.go | 3 ++- commands/commands.go | 19 +++++++++++++++++++ commands/msg/move.go | 3 ++- widgets/dirlist.go | 6 +++++- 4 files changed, 28 insertions(+), 3 deletions(-) diff --git a/commands/account/cf.go b/commands/account/cf.go index 197e956..6c928ea 100644 --- a/commands/account/cf.go +++ b/commands/account/cf.go [message trimmed]
From Gregory Mullen to ~sircmpwn/aerc
Tab completion currently only works on commands. Contextual completion will be added in the future. --- aerc.go | 63 ++++++++++++++++-------- commands/account/account.go | 4 +- commands/account/cf.go | 14 +++++- commands/account/compose.go | 14 +++++- commands/account/mkdir.go | 14 +++++- commands/account/next-folder.go | 19 ++++++-- commands/account/next-result.go | 20 ++++++-- commands/account/next.go | 21 +++++--- commands/account/pipe.go | 14 +++++- commands/account/search.go | 15 ++++-- commands/account/select.go | 15 ++++-- [message trimmed]
From Gregory Mullen to ~sircmpwn/aerc
--- lib/dirstore.go | 20 ++++++++++++++++++++ widgets/dirlist.go | 11 +++++++---- 2 files changed, 27 insertions(+), 4 deletions(-) create mode 100644 lib/dirstore.go diff --git a/lib/dirstore.go b/lib/dirstore.go new file mode 100644 index 0000000..e7ebb77 --- /dev/null +++ b/lib/dirstore.go @@ -0,0 +1,20 @@ package lib [message trimmed]
From Gregory Mullen to ~sircmpwn/aerc
The move command is the only one currently implemented --- aerc.go | 63 ++++++++++++++++-------- commands/account/account.go | 4 +- commands/account/cf.go | 14 +++++- commands/account/compose.go | 14 +++++- commands/account/mkdir.go | 14 +++++- commands/account/next-folder.go | 19 ++++++-- commands/account/next.go | 21 +++++--- commands/account/pipe.go | 14 +++++- commands/account/select.go | 15 ++++-- commands/account/view.go | 15 ++++-- commands/cd.go | 14 +++++- commands/commands.go | 78 ++++++++++++++++++++++++++---- [message trimmed]
From Gregory Mullen to ~sircmpwn/aerc
--- lib/dirstore.go | 20 ++++++++++++++++++++ widgets/dirlist.go | 11 +++++++---- 2 files changed, 27 insertions(+), 4 deletions(-) create mode 100644 lib/dirstore.go diff --git a/lib/dirstore.go b/lib/dirstore.go new file mode 100644 index 0000000..e7ebb77 --- /dev/null +++ b/lib/dirstore.go @@ -0,0 +1,20 @@ package lib [message trimmed]
From Gregory Mullen to ~sircmpwn/aerc
The move command is the only one currently implemented --- aerc.go | 47 +++++++++++------- commands/account/account.go | 4 +- commands/account/cf.go | 14 +++++- commands/account/compose.go | 15 ++++-- commands/account/mkdir.go | 14 +++++- commands/account/next-folder.go | 19 +++++-- commands/account/next.go | 21 +++++--- commands/account/pipe.go | 14 +++++- commands/account/select.go | 15 ++++-- commands/account/view.go | 15 ++++-- commands/cd.go | 14 +++++- commands/commands.go | 79 ++++++++++++++++++++++++++---- [message trimmed]
From Gregory Mullen to ~sircmpwn/aerc
--- config/binds.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/binds.conf b/config/binds.conf index c202386..7818b86 100644 --- a/config/binds.conf +++ b/config/binds.conf @@ -37,6 +37,8 @@ rq = :reply -aq<Enter> Rr = :reply<Enter> Rq = :reply -q<Enter> m = :move<space> [message trimmed]
From Gregory Mullen to ~sircmpwn/aerc
The move command is the only one currently implemented --- aerc.go | 47 +++++++++++------- commands/account/account.go | 4 +- commands/account/cf.go | 14 +++++- commands/account/compose.go | 15 ++++-- commands/account/mkdir.go | 14 +++++- commands/account/next-folder.go | 19 +++++-- commands/account/next.go | 21 +++++--- commands/account/pipe.go | 14 +++++- commands/account/select.go | 15 ++++-- commands/account/view.go | 15 ++++-- commands/cd.go | 14 +++++- commands/commands.go | 79 ++++++++++++++++++++++++++---- [message trimmed]