summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--config.org10
1 files changed, 9 insertions, 1 deletions
diff --git a/config.org b/config.org index 32a2db4..76a9811 100644 --- a/config.org +++ b/config.org
@@ -1727,9 +1727,17 @@ Here's a wrapper script that'll start =emacs --daemon= if there isn't one, and t
1727* Appendix B: areas for further research 1727* Appendix B: areas for further research
1728 1728
1729- [[https://github.com/flexibeast/ebuku][ebuku]] (of course, I'd need [[https://github.com/jarun/buku][buku]] as well) -- bookmarks 1729- [[https://github.com/flexibeast/ebuku][ebuku]] (of course, I'd need [[https://github.com/jarun/buku][buku]] as well) -- bookmarks
1730- [[https://www.billdietrich.me/Authentication.html?expandall=1#KeePassXCandSecretService][KeePassXC as Secret Service]] 1730- [[https://www.billdietrich.me/Authentication.html?expandall=1#KeePassXCandSecretService][KeePassXC as Secret Service]] -- see [[*KeePassXC integration]]
1731- [[https://github.com/rolandwalker/ignoramus][Ignoramus]] -- this might not e necessary 1731- [[https://github.com/rolandwalker/ignoramus][Ignoramus]] -- this might not e necessary
1732- [[https://github.com/rolandwalker/dynamic-fonts][Dynamic fonts]] -- take a look @ this and compare with my fonts section 1732- [[https://github.com/rolandwalker/dynamic-fonts][Dynamic fonts]] -- take a look @ this and compare with my fonts section
1733- [[https://github.com/rolandwalker/simpleclip][Simple clipboard integration]] -- test with Windows, maybe 1733- [[https://github.com/rolandwalker/simpleclip][Simple clipboard integration]] -- test with Windows, maybe
1734- [[https://git.sr.ht/~iank/visible-mark][visible mark]] -- show where the marks are ... 1734- [[https://git.sr.ht/~iank/visible-mark][visible mark]] -- show where the marks are ...
1735- consider this Reddit thread: [[https://www.reddit.com/r/emacs/comments/k3xfa1/speeding_up_magit/][speeding up magit]] 1735- consider this Reddit thread: [[https://www.reddit.com/r/emacs/comments/k3xfa1/speeding_up_magit/][speeding up magit]]
1736
1737** export org to ODT on Windows
1738
1739Windows doesn't have =zip= natively (though it /does/ have =curl= -- go figure!), so the ODT export for Org-mode won't work. There /is/ a [[https://stackoverflow.com/questions/8625306/org-mode-zip-needed-how-to-over-come][StackOverflow discussion]] that mentions =p7zip= and a possible batch file, but I couldn't get that to work with a little testing. It might need more work.
1740
1741Something that /did/ work was downloading =zip.exe= from [[http://infozip.sourceforge.net/][Info-ZIP]], and placing it somewhere in =exec-path= -- though of course, /then/ you need =unzip.exe=, apparently in the same folder. Git Portable ships with =unzip.exe=, for example, but even though it's in =exec-path=, org-export threw an error unless =zip= and =unzip= were in the /same/ folder.
1742
1743So I might either (a) have to set up computers in this way when I use new ones, or (b) include both =zip.exe= and =unzip.exe= in /this/ Git repo, or ... something else. A true quandry.