diff options
author | joe <rbo@gmx.us> | 2025-09-01 11:11:47 +0200 |
---|---|---|
committer | joe <rbo@gmx.us> | 2025-09-01 11:11:47 +0200 |
commit | f6e349dc97fb4a3aec15fa0a674f079b04693dfe (patch) | |
tree | 8e6e398b70fcc66fba5f7a65b896b487f8eae91a /src/c_exec.go | |
parent | fixed bad bug (diff) | |
download | hardflip-f6e349dc97fb4a3aec15fa0a674f079b04693dfe.tar.gz hardflip-f6e349dc97fb4a3aec15fa0a674f079b04693dfe.tar.bz2 hardflip-f6e349dc97fb4a3aec15fa0a674f079b04693dfe.tar.xz hardflip-f6e349dc97fb4a3aec15fa0a674f079b04693dfe.tar.zst hardflip-f6e349dc97fb4a3aec15fa0a674f079b04693dfe.zip |
capital update
Diffstat (limited to 'src/c_exec.go')
-rw-r--r-- | src/c_exec.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/c_exec.go b/src/c_exec.go index f6d84ed..c6d08dd 100644 --- a/src/c_exec.go +++ b/src/c_exec.go @@ -212,7 +212,8 @@ func c_format_cmd(host *HostNode, opts HardOpts, } if len(gpg) > 0 && gpg != "plain" && len(host.Pass) > 0 { if ui.s != nil { - i_draw_msg(ui.s, 1, ui.style[BOX_STYLE], ui.dim, " GnuPG ") + i_draw_msg(ui.s, 1, ui.style[BOX_STYLE], ui.style[HEAD_STYLE], + ui.dim, " GnuPG ") text := "decryption using gpg..." left, right := i_left_right(len(text), *ui) i_draw_text(ui.s, left, ui.dim[H] - 3, right, ui.dim[H] - 3, @@ -301,7 +302,8 @@ func c_exec(host *HostNode, opts HardOpts, ui *HardUI) { } } else if ui.s != nil { - i_draw_msg(ui.s, 1, ui.style[BOX_STYLE], ui.dim, " Exec ") + i_draw_msg(ui.s, 1, ui.style[BOX_STYLE], ui.style[HEAD_STYLE], ui.dim, + " exec ") text := "running command..." left, right := i_left_right(len(text), *ui) i_draw_text(ui.s, left, ui.dim[H] - 3, right, ui.dim[H] - 3, |