summaryrefslogtreecommitdiff
path: root/rc.lua
diff options
context:
space:
mode:
authorache <ache@ache.one>2023-02-26 01:41:41 +0100
committerache <ache@ache.one>2023-02-26 01:41:41 +0100
commit186031aa75290e303303dd2e60a3654c96ab4462 (patch)
tree5570dd9e0adcce32c6ef12d2a8ed7909e041a0e2 /rc.lua
parentShow percentage of total RAM used (diff)
Add 🚨 emoji to alert related label
Diffstat (limited to 'rc.lua')
-rw-r--r--rc.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/rc.lua b/rc.lua
index d9fe7a9..7067706 100644
--- a/rc.lua
+++ b/rc.lua
@@ -867,14 +867,14 @@ awful.key({ modkey, "Shift" }, "s", hotkeys_popup.show_help, {descriptio
text = "Notification d'énergie : " .. ( notify_bat and "activée" or "désactivée" )})
end,
- {description = "Toggle battery warning", group = "awesome"}),
+ {description = "Toggle battery warning 🚨", group = "awesome"}),
awful.key({ modkey, "Control" }, "b", function ()
notify_ram = not notify_ram
naughty.notify({ preset = naughty.config.presets.normal, timeout=1,
text = "Notification de ressource RAM: " .. ( notify_ram and "activée" or "désactivée" )})
end,
- {description = "Toggle RAM limite warning", group = "awesome"}),
+ {description = "Toggle RAM limite warning 🚨", group = "awesome"}),
awful.key({ modkey, "Shift" }, "e", function ()
notify_email = not notify_email
@@ -882,7 +882,7 @@ awful.key({ modkey, "Shift" }, "s", hotkeys_popup.show_help, {descriptio
text = "Notification d'email : " .. ( notify_email and "activée" or "désactivée" )})
end,
- {description = "Toggle email warning", group = "awesome"}),
+ {description = "Toggle email warning 🚨", group = "awesome"}),
awful.key({ modkey, "Control" }, "t", showHideWibox),