Ouch, I gave Vesktop a spin last week - but not the flatpak⌠It had an annoying habit of not letting me resize the window.
Discover is okay for - well - discovering things, seeing alternatives and stuff⌠but I never install with it.
add/remove
(pamac manager) is good, but if you found it in discover Iâd generally install in terminal:
flatpak install vesktop
will set it looking for matches:
flatpak install vesktop
Looking for matchesâŚ
Found ref âapp/dev.vencord.Vesktop/x86_64/stableâ in remote âflathubâ (system).
Use this ref? [Y/n]:
Webcord is much nicer - I used it a year or so now with no problems, so maybe give that a spin⌠but just install in the terminal:
pamac install webcord-bin
- nice and quick, no building.
Youâre right about not being able to delete system files easily, this is how itâs meant to be.
The way to deal with flatpak is also terminal, and itâs pretty friendly (meaning you donât have to type too precisely):
flatpak list
If itâs there, then just
flatpak remove vesktop
And as megavolt already posted, you can go with 'âdeletedata --assumeyes` to make it a bit cleaner.
Also, the âsearchâ thing applies - just flatpak remove vesktop
would do the trick, but maybe itâs worth putting an alias/abbreviation:
purge-flatpak = flatpak remove --deletedata --assumeyes
Going in and manually hacking system files isnât a great idea - I have a couple of functions that do the trick though:
- Remove empties:
rmdir0
- find -type d -empty -delete
- Just nuke that â â â â â
rmdir!!
= rm -vdrRR
- Stop 'efffâing about:
rmdirf
= doas rm -vdrRRf
.