Skip to content

Commit

Permalink
add KeePassXC
Browse files Browse the repository at this point in the history
  • Loading branch information
cobalt2727 committed Aug 2, 2024
1 parent da3f05c commit 7b298ff
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions megascript_apps.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ fn="AntiMicroX";;d="A graphical program used to map gamepad keys to keyboard, mo

fn="Barrier";;d="Share your mouse and keyboard between multiple computers";;sn="barrier.sh";;f="extras"

fn="KeePassXC";;d="A modern, secure, and open-source password manager that stores and manages your most sensitive information.";;sn="KeePassXC.sh";;f="extras"

# fn="ALL THE SHOVELWARE";;d="(WARNING: THIS IS LIKE 19 GB) Literally just installs all packages starting with games";;sn="almost_nineteen_entire_gigabytes_of_shovelware.sh";;f="extras"

# fn="Piper";;d="Graphical application to configure input devices, mostly gaming mice";;sn="piper.sh";;f="extras"
Expand Down
2 changes: 2 additions & 0 deletions megascript_apps_fedora.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ fn="AntiMicroX";;d="A graphical program used to map gamepad keys to keyboard, mo

# fn="Barrier";;d="Share your mouse and keyboard between multiple computers";;sn="barrier.sh";;f="extras"

fn="KeePassXC";;d="A modern, secure, and open-source password manager that stores and manages your most sensitive information.";;sn="KeePassXC.sh";;f="extras"

# fn="ALL THE SHOVELWARE";;d="(WARNING: THIS IS LIKE 19 GB) Literally just installs all packages starting with games";;sn="almost_nineteen_entire_gigabytes_of_shovelware.sh";;f="extras"

# fn="Piper";;d="Graphical application to configure input devices, mostly gaming mice";;sn="piper.sh";;f="extras"
Expand Down
13 changes: 13 additions & 0 deletions scripts/extras/KeePassXC.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash

if command -v apt >/dev/null; then
ubuntu_ppa_installer "phoerious/keepassxc"

This comment has been minimized.

Copy link
@theofficialgman

theofficialgman Aug 2, 2024

Collaborator

this does not install any packages

This comment has been minimized.

Copy link
@cobalt2727

cobalt2727 Aug 2, 2024

Author Owner

...let's just say it was a long day at work today.


elif command -v dnf >/dev/null; then
sudo dnf install keepassxc -y || error "Failed to install AntiMicroX!"
else
error "No available package manager found. Are you using a Ubuntu/Debian or Fedora based system?"
fi

echo "Done!"
sleep 1

0 comments on commit 7b298ff

Please sign in to comment.