• 7 Posts
  • 507 Comments
Joined 3 years ago
cake
Cake day: June 10th, 2023

help-circle



  • cerement@slrpnk.nettoLinux@lemmy.mlX11 vs Wayland
    link
    fedilink
    arrow-up
    29
    arrow-down
    2
    ·
    2 months ago
    • for most people, use whatever your distro ships with and installs for you
    • choosing desktop environments still starts heated discussions – high end, it’s a choice between Gnome and KDE – mid-tier has Xfce, LXQt, Mate, Cinnamon, and more – limited hardware go for IceWM, JWM, FLWM, or similar – want to get your hands dirty? go for a tiling window manager
    • X11 is (effectively) abandonware at this point – it’s still getting security patches, but the devs left and started Wayland 17-ish years ago
    • XLibre is more political than technical – and I’ll leave it at that















  • a more obscure option is exiftool – and documention

    • setup an input folder and a destination folder beforehand
    • copy photos from phone to input folder
    • bonus: decide on separate suffix or initials for each of you
    exiftool -progress -d <destination-folder>/%Y%m%d-%H%M%S-<suffix>.%%le "-filename<CreateDate" <input-folder>
    
        -progress
            verbose and shows an [x/y] progress
        -d <destination-folder>/%Y-%m-%d-%H%M%S-<suffix>.%%le
            renames to YYYY-mm-dd-HHMMSS-sfx.ext format
            and lowercases the extension
        "-filename<CreateDate"
            uses the image creation date (from EXIF metadata) for the above naming scheme