about summary refs log tree commit diff stats
path: root/src/teliva.c
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-01-02 15:52:02 -0800
committerKartik K. Agaram <vc@akkartik.com>2022-01-02 15:52:02 -0800
commit2b1609f09bae375c7f7bfd883ef8962514ed7d48 (patch)
tree40329de1d57b30cf7ce0041ad4e7a9e98d40b57b /src/teliva.c
parentdf5cd416379e381b143b2aa3941a03a02cc8f84c (diff)
downloadteliva-2b1609f09bae375c7f7bfd883ef8962514ed7d48.tar.gz
copy tweak
Diffstat (limited to 'src/teliva.c')
-rw-r--r--src/teliva.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/teliva.c b/src/teliva.c
index 23f27f4..c8a773e 100644
--- a/src/teliva.c
+++ b/src/teliva.c
@@ -1041,8 +1041,8 @@ static void permissions_menu() {
 static void render_permissions_screen(lua_State* L) {
   clear();
   attrset(A_BOLD);
-  mvaddstr(1, 20, "😈 When can apps perform...? 😈");
-//?   mvaddstr(1, 30, "😈 ⛧  When can apps perform...? ⛧ 😈");  // most fonts don't have pentagrams
+  mvaddstr(1, 5, "Permissions: What sensitive operations this app is allowed to perform");
+  mvaddstr(2, 5, "🚧 Be very careful granting permissions 🚧");
   attrset(A_NORMAL);
   int file_colors = file_operations_permitted ? COLOR_PAIR_WARN : COLOR_PAIR_SAFE;
   int net_colors = net_operations_permitted ? COLOR_PAIR_WARN : COLOR_PAIR_SAFE;
@@ -1090,7 +1090,8 @@ static void render_permissions_screen(lua_State* L) {
 
   if (file_operations_permitted && net_operations_permitted) {
     attron(COLOR_PAIR(COLOR_PAIR_RISK));
-    mvaddstr(8, 5, "⚠️  Teliva can't protect you if this app does something sketchy. Consider choosing stronger conditions. ⚠️");
+    // idea: include pentagram emoji. But it isn't widely supported yet on Linux.
+    mvaddstr(5, 5, "😈 ⚠️  Teliva can't protect you if this app does something sketchy. Consider choosing stronger conditions. ⚠️  😈");
 //?     mvaddstr(8, 5, "🦮 ⚖ 🙈 Teliva can't tell how much it's protecting you. Consider simplifying the conditions.");
     attroff(COLOR_PAIR(COLOR_PAIR_RISK));
   }