Skip to content

Commit

Permalink
Merge pull request #198 from Gua-tk/192_daedalus_wallet
Browse files Browse the repository at this point in the history
ADDED: daedalus wallet
  • Loading branch information
AleixMT authored Mar 23, 2024
2 parents 470fd8f + 1f2a9c0 commit 4b9cd2b
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 1 deletion.
1 change: 1 addition & 0 deletions data/core/feature_arguments.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ curl_arguments=("curl")
customizer_arguments=("customizer" "linux_auto_customizer" "auto_customizer" "linux_customizer")
customizerGUI_arguments=("customizer_gui" "gui")
d_arguments=("d")
daedalus_arguments=("daedalus_wallet")
dart_arguments=("dart")
dbeaver_arguments=("dbeaver")
dconfEditor_arguments=("dconf_editor" "dconf")
Expand Down
1 change: 1 addition & 0 deletions data/core/feature_keynames.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ curl
customizer
customizerGUI
d
daedalus
dart
dbeaver
dconfEditor
Expand Down
14 changes: 14 additions & 0 deletions data/features/daedalus/daedalus.dat.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
daedalus_name="Daedalus wallet"
daedalus_description="Software to store and manage cryptos in your computer"
daedalus_version="5.3.0-59334-mainnet-44942bd51-x86_64-linux"
daedalus_tags=("customDesktop")
daedalus_systemcategories=("Utility")

daedalus_binariesinstalledpaths=("bin/codium;codium")
daedalus_downloadKeys=("bundle")
daedalus_bundle_URL="https://update-cardano-mainnet.iohk.io/daedalus-5.3.0-59334-mainnet-44942bd51-x86_64-linux.bin?t=1709835699086"
daedalus_bundle_downloadPath="daedalus"
daedalus_bashfunctions=("daedalus.sh")
daedalus_binariesinstalledpaths=("daedalus;daedalus")
daedalus_manualcontentavailable="0;0;1"
12 changes: 12 additions & 0 deletions data/features/daedalus/daedalus.func.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env bash

install_daedalus_post()
{
chmod +x ${CURRENT_INSTALLATION_FOLDER}/daedalus
${CURRENT_INSTALLATION_FOLDER}/daedalus
}

uninstall_daedalus_post()
{
:
}
1 change: 1 addition & 0 deletions data/features/daedalus/daedalus.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Self-managed wallet for crypto
5 changes: 5 additions & 0 deletions data/features/daedalus/daedalus.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash
daedalus()
{
nohup daedalus-mainnet &>/dev/null &
}
2 changes: 1 addition & 1 deletion data/features/gitPristine/gitPristine.dat.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ gitPristine_name="git pristine alias"
gitPristine_description="Alias to obtain a pristine last version of a git repository"
gitPristine_version="1.0"
gitPristine_systemcategories=("Utility" "Terminal")
gitPristine_tags=("gitFunctions")
gitPristine_tags=("gitFunctions" "gitbashfunctions")
gitPristine_bashfunctions=("pristine.sh")

0 comments on commit 4b9cd2b

Please sign in to comment.