[feat] Encrypted mount unmount disks (dmenu)
[dotfiles_afify.git] / .scripts / gpg_decrypt.sh
blobfa096f411d457390971283bae28e5b72759d28d3
1 #!/usr/bin/env bash
3 #==============================================================================
4 # Name : gpg_decrypt
5 # GitHub : HassanAfify
6 # Copyright : MIT
7 # Version : 0.1
8 # Description :
9 #==============================================================================
12 encrypted_file='firefox_startup.txt.gpg'
13 output_file='firefox_startup.txt'
14 signed_file='firefox_startup.txt.sha256sum.sig'
16 # Vertify
17 gpg --verify $signed_file
18 # gpg --verify < $signed_file
20 # Decrypt
21 # gpg --output $output_file --decrypt $encrypted_file