Hi Linux Lemmites. Recently finished up school and started working full time and kind of miss working on personal projects. I’m looking to try to make something in rust and try out gpui if I can figure it out or maybe egui. I also want to make something maybe even a handful of people would actually use as I find that motivating, so I ask what would actually be useful to you?

  • MonkderVierte@lemmy.zip
    link
    fedilink
    arrow-up
    0
    ·
    edit-2
    17 days ago
    qrgen() {
        ##: generate and display qr-code in one step
        qr_file="$XDG_RUNTIME_DIR"/"qr.$$.svg"
        qrencode -l "${2:-H}" -t SVG -o "$qr_file" "$1"
        display "$qr_file"
        rm "$qr_file"
    }
    

    Requires qrencode. Replace magick display with your image viewer of choice if you want.