PNDeb / pinenote-debian-image

A user-ready linux image/rootfs for the Pine64 Pinenote based on Debian trixie and GNOME
GNU General Public License v3.0
45 stars 5 forks source link

Provide a simple GUI for some default PN tasks #64

Open m-weigand opened 3 months ago

m-weigand commented 3 months ago

Let's go with a zenity-based gui https://help.gnome.org/users/zenity/stable/usage.html.en

#!/bin/bash
list=("a" "b")
ret=$(zenity --list --column 'options' ${list[@]})
case "${ret}" in
    "a")
           echo "a was chosen";
      ;;
      "b")
           echo "b was chosen";
       ;;
 esac

Syncthing

https://docs.syncthing.net/users/autostart.html#linux

systemctl --user enable syncthing.service
systemctl --user start syncthing.service
diederikdehaas commented 1 month ago

enable one of the following apps to be auto-started

  • enable auto-start of koreader
  • enable auto-start of xournalpp

I think that's a (very) bad idea.

Provide instructions on how to do it: excellent Make the choice FOR the user: very bad