My list:
- A privacy respecting Dating platform.
- A good 2D CAD program capable of dealing with DWG files.
Please don’t post a huge list of games. That would belong in another post. since there are many good ones already.
My list:
Please don’t post a huge list of games. That would belong in another post. since there are many good ones already.
An ultra-lightweight viewer for ods/xlsx and odt/docx? Maybe its there but couldn’t find one. Have used pandoc to pdf on docs and excel2table on spreadsheets.
Libre office is quite light-weight and I think it can be used as converted for anything as well. You can pipe docx > pdf > pdf viewer
It would be great if there was an equivalent to mupdf/zathura, netsurf that flashs open and disappears with control-q etc.
I think you could actually write an extension for zathura that would convert docx to pdf on launch or just display docx. See this great stackoverflow answer; I’m not a C dev but it seems like Zathura could totally support that :)
here is my quick and dirty working bash example. might try for a csv/ods solution which is a bigger need for me.
#!/bin/sh pandoc -i $1 -o $1.pdf --pdf-engine=wkhtmltopdf mupdf $1.pdf rm $1.pdf
Thanks for the link, actually come to think of it I could write a bash script with pandoc and pass the output to mu for the docx odt part.