Edit (2024): You no longer need to follow this guide! Just use PrismLauncher.
.
.
.
.
# https://specifications.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html, aggregate list from each section | |
address-book-new The icon used for the action to create a new address book. | |
application-exit The icon used for exiting an application. Typically this is seen in the application's menus as File->Quit. | |
appointment-new The icon used for the action to create a new appointment in a calendaring application. | |
call-start The icon used for initiating or accepting a call. Should be similar to the standard cellular call pickup icon, a green handset with ear and mouth pieces facing upward. | |
call-stop The icon used for stopping a current call. Should be similar to the standard cellular call hangup icon, a red handset with ear and mouth pieces facing downward. | |
contact-new The icon used for the action to create a new contact in an address book application. | |
document-new The icon used for the action to create a new document. | |
document-open The icon used for the action to open a document. | |
document-open-recent T |
Edit (2024): You no longer need to follow this guide! Just use PrismLauncher.
.
.
.
.
# Export and upload GPG keys to Azure Key Vault | |
$UserId = "" # GPG email address | |
$SecretKeyName = "github-gpg-secret-key" | |
$PublicKeyName = "github-gpg-public-key" | |
$KeyVaultName = "" # Key Vault Name | |
$SecretKeyFile = ".\sk.asc" | |
$PublicKeyFile = ".\pk.asc" | |
# Send Private Key | |
$(gpg --armor --export-secret-keys --with-fingerprint $UserId) | Out-File $SecretKeyFile |