29 lines
1.4 KiB
Bash
Executable File
29 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
##makedesc: Install syncthing (latest) + ppa
|
|
|
|
echo
|
|
echo "==============================================="
|
|
echo "Installing syncthing (latest) + ppa..."
|
|
echo "==============================================="
|
|
echo
|
|
|
|
# https://apt.syncthing.net/
|
|
|
|
# Add the release PGP keys:
|
|
sudo curl -s -o /usr/share/keyrings/syncthing-archive-keyring.gpg https://syncthing.net/release-key.gpg
|
|
|
|
# Add the "stable" channel to your APT sources:
|
|
echo "deb [signed-by=/usr/share/keyrings/syncthing-archive-keyring.gpg] https://apt.syncthing.net/ syncthing stable" | sudo tee /etc/apt/sources.list.d/syncthing.list
|
|
|
|
# Add the "candidate" channel to your APT sources:
|
|
echo "deb [signed-by=/usr/share/keyrings/syncthing-archive-keyring.gpg] https://apt.syncthing.net/ syncthing candidate" | sudo tee /etc/apt/sources.list.d/syncthing.list
|
|
|
|
# Update and install syncthing:
|
|
sudo apt update
|
|
sudo apt install -y --autoremove syncthing
|
|
|
|
wget "https://raw.githubusercontent.com/syncthing/syncthing/main/etc/linux-desktop/syncthing-start.desktop" -O $HOME/.local/share/applications/syncthing-start.desktop
|
|
wget "https://raw.githubusercontent.com/syncthing/syncthing/main/etc/linux-desktop/syncthing-ui.desktop" -O $HOME/.local/share/applications/syncthing-ui.desktop
|
|
ln -s $HOME/.local/share/applications/syncthing-start.desktop $HOME/.config/autostart/syncthing-start.desktop
|
|
# или демоном: https://habr.com/ru/post/350892/
|