Skip to content

Commit 21b92a2

Browse files
feat(debian-linux): proton pass install script via debian package
Practicalli uses Proton Pass rather than 1Password. 1Password script renamed to clarify install is using a Debian Package. 1Password script no longer called by dev-tools-install script, calling Proton Pass script instead.
1 parent 83b213e commit 21b92a2

2 files changed

Lines changed: 27 additions & 1 deletion

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#!/usr/bin/env bash
2+
3+
# INFO: Proton Pass for Linux:
4+
# https://proton.me/support/set-up-proton-pass-linux#download
5+
6+
echo
7+
echo "# ---------------------------------------"
8+
echo "Proton-pass Desktop app for secrets management"
9+
echo "Installed via Debian Linux package system"
10+
echo
11+
12+
echo "Download official Proton-pass Debian Package"
13+
curl --fail --location --silent --show-error "https://proton.me/download/PassDesktop/linux/x64/ProtonPass.deb" --output /tmp/proton-pass-latest.deb
14+
echo
15+
16+
echo "Install Proton-pass package"
17+
sudo apt-get install /tmp/proton-pass-latest.deb
18+
echo
19+
20+
echo "Proton-pass App now available via desktop launcher and command line:"
21+
echo "Execution path: $(which proton-pass)"
22+
# No version option on command line
23+
# echo "Proton-pass version: $(proton-pass --version)"
24+
echo "# ---------------------------------------"
25+
echo

debian-linux/dev-tools-install.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,10 @@ echo
4343
echo "# ---------------------------------------"
4444
echo "Desktop Apps"
4545

46-
./app/1password.sh
4746
./app/discord.sh
47+
# ./app/1password-deb.sh # Practicalli uses Proton Pass now
4848
./app/httpie.sh
49+
./app/proton-pass-deb.sh # Check for latest deb
4950
./app/slack-deb.sh # Check for latest deb
5051

5152
echo "# ---------------------------------------"

0 commit comments

Comments
 (0)