about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2023-04-09 18:24:23 +0200
committerGitHub <noreply@github.com>2023-04-09 18:24:23 +0200
commite52ca2fbaa02acec3b2b757369ef5740e7a103da (patch)
treee80a507290c46f82b8a5394c30ec24e8e879f270 /src/ui
parent19921f61c14095cadc55b329dd7c8f02bdc79d31 (diff)
parent5d3c8ce7c164f74f606ff06d1adf849821591a51 (diff)
downloadprofani-tty-e52ca2fbaa02acec3b2b757369ef5740e7a103da.tar.gz
Merge pull request #1815 from H3rnand3zzz/feature/the-client-switcher
Feature: Allow setting client identification name/version manually
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/console.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ui/console.c b/src/ui/console.c
index 72aad7b6..d26e559f 100644
--- a/src/ui/console.c
+++ b/src/ui/console.c
@@ -1064,6 +1064,9 @@ cons_show_account(ProfAccount* account)
     if (account->startscript) {
         cons_show("Start script      : %s", account->startscript);
     }
+    if (account->client) {
+        cons_show("Client name       : %s", account->client);
+    }
     if (account->theme) {
         cons_show("Theme             : %s", account->theme);
     }