Next-gen Clipboard manager for Gnome Shell You need libgda and gsound for this extension to work. Fedora: sudo dnf install libgda libgda-sqlite Arch Linux: sudo pacman -S libgda (libgda6 for gnome-43 or later) Ubuntu/Debian: sudo apt install gir1.2-gda-5.0 gir1.2-gsound-1.0 openSUSE: sudo zypper install libgda-6_0-sqlite typelib-1_0-Gda-6_0 typelib-1_0-GSound-1_0
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
22 | Active |
21 | Rejected |
20 | Rejected |
19 | Active |
18 | Active |
17 | Active |
16 | Active |
15 | Active |
14 | Rejected |
13 | Rejected |
12 | Rejected |
11 | Rejected |
10 | Active |
9 | Active |
8 | Rejected |
7 | Active |
6 | Active |
5 | Active |
4 | Rejected |
3 | Active |
2 | Active |
1 | Rejected |
why are using spawn command for removing files instead of using `Gio.File` (line 166-170 extension.js)? https://gjs-docs.gnome.org/gio20~2.66p/gio.file
file.delete doesn't remove the directory if it is not empty. I thought deleting each directory and file recursively under it would not be worth the effort. So I am executing a command instead.
As stated in review guidelines, you should do it in gjs when it is possible: https://gjs.guide/extensions/review-guidelines/review-guidelines.html#scripts-and-binaries Example: https://gjs.guide/guides/gio/file-operations.html#recursively-deleting-a-directory