diff --git a/CONFIG/aerc/aerc.conf b/CONFIG/aerc/aerc.conf index 13a3dc1..3155714 100644 --- a/CONFIG/aerc/aerc.conf +++ b/CONFIG/aerc/aerc.conf @@ -25,8 +25,8 @@ icon-signed=✔ icon-signed-encrypted=✔ icon-unknown=✘ icon-invalid=⚠ -reverse-thread-order=true -threading-enabled=true +reverse-thread-order=false +threading-enabled=false [viewer] always-show-mime=true diff --git a/CONFIG/btop/btop.conf b/CONFIG/btop/btop.conf index 9c6b60a..4e3c4d3 100644 --- a/CONFIG/btop/btop.conf +++ b/CONFIG/btop/btop.conf @@ -50,7 +50,7 @@ graph_symbol_net = "default" graph_symbol_proc = "default" #* Manually set which boxes to show. Available values are "cpu mem net proc" and "gpu0" through "gpu5", separate values with whitespace. -shown_boxes = "cpu mem net proc" +shown_boxes = "cpu mem net proc gpu0" #* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs. update_ms = 2000 diff --git a/CONFIG/mimeapps.list b/CONFIG/mimeapps.list index b43eaa0..760b6b4 100644 --- a/CONFIG/mimeapps.list +++ b/CONFIG/mimeapps.list @@ -29,5 +29,10 @@ inode/directory=yazi.desktop; x-scheme-handler/msteams=teams.desktop; text/calendar=userapp-khalimport.desktop; x-scheme-handler/discord=vesktop.desktop: +application/vnd.openxmlformats-officedocument.wordprocessingml.document=org.kde.okular.desktop; +text/markdown=org.kde.okular.desktop; +application/zip=userapp-file-roller.desktop [Added Associations] + +[Removed Associations] diff --git a/HOME/.local/share/applications/userapp-file-roller.desktop b/HOME/.local/share/applications/userapp-file-roller.desktop new file mode 100644 index 0000000..c314a3b --- /dev/null +++ b/HOME/.local/share/applications/userapp-file-roller.desktop @@ -0,0 +1,7 @@ +[Desktop Entry] +Type=Application +Name=file-roller +Exec=file-roller %f +Categories=FileTools;FileManager; +MimeType=application/zip +Terminal=false diff --git a/endos.py b/endos.py index 2c668b5..3f0a391 100755 --- a/endos.py +++ b/endos.py @@ -8,7 +8,6 @@ # TODO # fix btop colors # pre-luks remote ssh -# modify /etc/greetd/regreet.toml WLR_NO_HARDWARE_CURSORS # add # - sudo ufw allow 22/tcp comment "ssh" # - sudo ufw default allow FORWARD @@ -73,7 +72,10 @@ installmap = dict( "zathura-pdf-mupdf", "zathura-djvu", "zathura-ps", - "doxx", # terminal viewer for word docs + "typst", + "okular", + "calligra", + "libreoffice-fresh", ), mediaviewers=( # video @@ -312,6 +314,8 @@ def install_filebrowsers(overwrite: bool, reinstall: bool) -> None: "boydaihungst/file-extra-metadata", ]: run(f"ya pkg add {plugin}".split()) + tgt = ".local/share/applications/userapp-file-roller.desktop" + helper_maybe_copy(HOME_SRC, HOME_TGT, tgt, overwrite, symlink=True) def install_netbrowsers(overwrite: bool, reinstall: bool) -> None: @@ -336,14 +340,9 @@ def install_emailcalrss(overwrite: bool, reinstall: bool) -> None: helper_install(*installmap["emailcalrss"], reinstall=reinstall) for tgt in ["vdirsyncer", "khard", "khal", "aerc", "newsboat"]: helper_clone_foldercontents(CFG_SRC, CFG_TGT, tgt, overwrite) + tgt = ".local/share/applications/userapp-khalimport.desktop" + helper_maybe_copy(HOME_SRC, HOME_TGT, tgt, overwrite, symlink=True) run("systemctl enable --user --now vdirsyncer.timer".split()) - helper_maybe_copy( - HOME_SRC / ".local/share/applications/", - HOME_TGT / ".local/share/applications/", - "userapp-khalimport.desktop", - overwrite, - symlink=True, - ) run(f"chmod 600 {CFG_TGT / 'aerc/accounts.conf'}".split()) (HOME_TGT / ".cache/newsboat").mkdir(exist_ok=True) (HOME_TGT / "Calendars").mkdir(exist_ok=True)