this post was submitted on 10 Sep 2023
93 points (100.0% liked)

KDE

5001 readers
49 users here now

KDE is an international technology team creating user-friendly free and open source software for desktop and portable computing. KDE’s software runs on GNU/Linux, BSD and other operating systems, including Windows.

Plasma 6 Bugs

If you encounter a bug, proceed to https://bugs.kde.org, check whether it has been reported.

If it hasn't, report it yourself.

PLEASE THINK CAREFULLY BEFORE POSTING HERE.

Developers do not look for reports on social media, so they will not see it and all it does is clutter up the feed.

founded 1 year ago
MODERATORS
 

It is a very simple program that allows you to have a quick overview of the contents of some files.

The program requires some python libraries and I have made a list of those needed for some distributions. they are generally always the same, just the names change a little.

Video: https://www.youtube.com/watch?v=AB1SRV1ldnw

Github: https://github.com/Nyre221/dolphin-quick-view

Download: https://www.pling.com/p/2083711/

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 1 year ago (1 children)

This looks cool, thanks!

A couple questions from looking at the repo:

  • instructions reference INSTALL.sh but that's not in the source? Maybe only in the release tarball?
  • does it clear the user's entire clipboard history each time it's run?
  • would it make sense to package this up for PyPI, with system deps being checked for and reported from within python? If so, are you interested in pull requests?
[–] Nies221 2 points 1 year ago

instructions reference INSTALL.sh but that’s not in the source? Maybe only in the release tarball?

I added it to the repository: https://github.com/Nyre221/dolphin-quick-view/tree/main/package%20creation

does it clear the user’s entire clipboard history each time it’s run?

I made some changes and now it doesn't delete all the history, only the last thing copied (afterwards try to restore it but it doesn't work if you copied a folder or file): https://github.com/Nyre221/dolphin-quick-view/blob/main/package%20creation/quick_view_package/dolphin_quick_view_shortcut.sh

this is caused by dolphin's limitations and there's not much I can do about it.

would it make sense to package this up for PyPI, with system deps being checked for and reported from within python? If so, are you interested in pull requests?

I don't think it makes much sense for this application.
For now I'm trying to integrate the modules inside a .pyz and eliminate the use of pip: https://github.com/Nyre221/dolphin-quick-view/issues/10