-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Parman
committed
Feb 12, 2025
1 parent
fa66a21
commit c8aed6a
Showing
6 changed files
with
89 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
Version 3.54.0 | ||
-Premium features | ||
-ParmaNas | ||
Version 3.53.0 | ||
-LND Watchtower | ||
-Bitcoin update 28.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
function menu_qrencode { | ||
|
||
while true ; do | ||
set_terminal ; echo -en " | ||
######################################################################################## | ||
QR Encode | ||
######################################################################################## | ||
${pink}QREncode is installed on your system. | ||
$cyan | ||
info)$orange Info fo DIY QR codes | ||
$cyan | ||
pub)$orange QR of your computer's SSH pubkey | ||
######################################################################################## | ||
" | ||
choose xpmq ; read choice | ||
jump $choice || { invalid ; continue ; } ; set_terminal | ||
case $choice in | ||
quit|Q|q) exit ;; p|P) return 1 ;; m|M) back2main ;; | ||
info) qrencode_info ;; | ||
pub) | ||
set_terminal_custom 50 100 | ||
echo "Public key..." | ||
qrencode -t ANSIUTF8 "$(cat ~/.ssh/id_rsa.pub)" | ||
enter_continue | ||
;; | ||
|
||
*) invalid ;; | ||
esac | ||
done | ||
} | ||
|
||
function qrencode_info { | ||
set_terminal ; echo -en " | ||
######################################################################################## | ||
QREncode Info | ||
######################################################################################## | ||
$orange | ||
To use qrencode command manually, the syntax is ... | ||
$cyan | ||
qrencode -t ANSIUTF8 \"some text\" | ||
$orange | ||
You can also QR the contents of a file ... | ||
$cyan | ||
qrencode -t ANSIUTF8 \"\$(cat /path/to/file)\" | ||
$orange | ||
Don't omit the \" | ||
######################################################################################## | ||
" | ||
enter_continue | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
version="v3.53.0" | ||
version="v3.54.0" | ||
vMajor=3 | ||
vMinor=53 | ||
vMinor=54 | ||
vPatch=0 | ||
#Leave this line here, and don't change line numbers |