You are not logged in.
Shotcut keyboard for switching between standalone and embedded image preview mode in Thunar (XFCE)
see in action https://www.youtube.com/watch?v=eAqL4tT … e=youtu.be
create sh file and then call from keyboard aplication shotcut
#!/bin/bash
MODE_KEY="/misc-image-preview-mode"
current=$(xfconf-query -c thunar -p $MODE_KEY)if [[ "$current" == "THUNAR_IMAGE_PREVIEW_MODE_EMBEDDED" ]]; then
xfconf-query -c thunar -p $MODE_KEY -s "THUNAR_IMAGE_PREVIEW_MODE_STANDALONE"
else
xfconf-query -c thunar -p $MODE_KEY -s "THUNAR_IMAGE_PREVIEW_MODE_EMBEDDED"
fi
Offline
[ Generated in 0.006 seconds, 7 queries executed - Memory usage: 517.45 KiB (Peak: 531.74 KiB) ]