This commit is contained in:
Marc Beninca 2024-11-29 19:58:07 +01:00
parent dda61e2594
commit a56aa8124f
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
2 changed files with 5 additions and 5 deletions

View file

@ -14,11 +14,11 @@ rwx_gnome_workspaces_primary() {
local var="${group}/${name}" local var="${group}/${name}"
# get # get
bool="$(gsettings get "${group}" "${name}")" bool="$(gsettings get "${group}" "${name}")"
sh_log_debug "${var}: ${bool}" rwx_log_debug "${var}: ${bool}"
# not # not
bool="$(sh_not "${bool}")" bool="$(rwx_not "${bool}")"
sh_log_debug "bool: ${bool}" rwx_log_debug "bool: ${bool}"
# set # set
gsettings set "${group}" "${name}" "${bool}" gsettings set "${group}" "${name}" "${bool}"
sh_log_info "${var}: ${bool}" rwx_log_info "${var}: ${bool}"
} }

View file

@ -112,7 +112,7 @@ rwx_rescue_wipe_2_make_hetzner_8_8() {
# passphrase # passphrase
unset passphrase unset passphrase
# format crypt # format crypt
sh_fs_make_btrfs "/dev/mapper/crypt" "crypt" \ rwx_fs_make_btrfs "/dev/mapper/crypt" "crypt" \
"00000000-0000-0000-0000-00000000000c" "00000000-0000-0000-0000-00000000000c"
# mount crypt # mount crypt
mkdir --parents "/media/crypt" mkdir --parents "/media/crypt"