Skip to content

Commit

Permalink
Feather Wallet: add comparison link, dark mode default
Browse files Browse the repository at this point in the history
  • Loading branch information
Botspot committed Nov 24, 2024
1 parent 7d52eaf commit f2497fa
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/Feather Wallet/description
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@ Store Monero cryptocurrency with Feather Wallet - better experience than Monero
Monero is a privacy currency, allowing easy money transfers to others without oppresive governments, hackers, or foreign adversaries knowing how much you sent or to whom.
Feather wallet allows you to store your currency securely. Usually this requires downloading the whole blockchain (Around 60gb for a pruned node), but Feather Wallet allows you to connect to remote nodes and will fetch the blockchain data very fast so you can get transacting quickly. It will check a list of nodes speed and pick the fastest one. Chances are if you have used the offical Monero GUI wallet you have experienced crashes, and sometimes annoying bugs. If you want a less buggy, more simple wallet Feather wallet is for you! It just works....

This site compares Feather to the official Monero wallet software: https://docs.featherwallet.org/guides/features

To run: Menu -> Internet -> Feather Wallet
To run in a terminal: /opt/feather.AppImage
8 changes: 8 additions & 0 deletions apps/Feather Wallet/install-32
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ sudo cp -f "$(dirname "$0")/icon-64.png" /usr/share/icons/hicolor/64x64/apps/fea
sudo update-icon-caches /usr/share/icons/*
sudo xdg-icon-resource forceupdate --mode system

#use dark mode by default
if [ ! -f ~/.config/feather/settings.json ];then
mkdir -p ~/.config/feather
echo '{
"skin": "QDarkStyle"
}' > ~/.config/feather/settings.json
fi

echo "[Desktop Entry]
Type=Application
Name=Feather Wallet
Expand Down
8 changes: 8 additions & 0 deletions apps/Feather Wallet/install-64
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ sudo cp -f "$(dirname "$0")/icon-64.png" /usr/share/icons/hicolor/64x64/apps/fea
sudo update-icon-caches /usr/share/icons/*
sudo xdg-icon-resource forceupdate --mode system

#use dark mode by default
if [ ! -f ~/.config/feather/settings.json ];then
mkdir -p ~/.config/feather
echo '{
"skin": "QDarkStyle"
}' > ~/.config/feather/settings.json
fi

echo "[Desktop Entry]
Type=Application
Name=Feather Wallet
Expand Down

0 comments on commit f2497fa

Please sign in to comment.