createThumbnail.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #!/usr/bin/gjs
  2. /* Desktop Icons GNOME Shell extension
  3. *
  4. * Copyright (C) 2018 Sergio Costas <rastersoft@gmail.com>
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. const GnomeDesktop = imports.gi.GnomeDesktop;
  20. const Gio = imports.gi.Gio;
  21. let thumbnailFactory = GnomeDesktop.DesktopThumbnailFactory.new(GnomeDesktop.DesktopThumbnailSize.LARGE);
  22. let file = Gio.File.new_for_path(ARGV[0]);
  23. let fileUri = file.get_uri();
  24. let fileInfo = file.query_info('standard::content-type,time::modified', Gio.FileQueryInfoFlags.NONE, null);
  25. let modifiedTime = fileInfo.get_attribute_uint64('time::modified');
  26. let thumbnailPixbuf = thumbnailFactory.generate_thumbnail(fileUri, fileInfo.get_content_type());
  27. if (thumbnailPixbuf == null)
  28. thumbnailFactory.create_failed_thumbnail(fileUri, modifiedTime);
  29. else
  30. thumbnailFactory.save_thumbnail(thumbnailPixbuf, fileUri, modifiedTime);