2024-08-09 13:55:19 +02:00
|
|
|
### Path to the eww binary
|
2024-09-21 13:29:11 +02:00
|
|
|
eww_binary_path = "eww"
|
2024-08-09 13:55:19 +02:00
|
|
|
### Where to find the icons for the notifications
|
|
|
|
icon_dirs = [
|
|
|
|
"/usr/share/icons",
|
|
|
|
"/usr/share/pixmaps",
|
2024-09-21 13:48:49 +02:00
|
|
|
"/home/gaspard/.nix-profile/share/icons",
|
|
|
|
"/home/gaspard/.nix-profile/share/pixmaps",
|
2024-08-09 13:55:19 +02:00
|
|
|
]
|
|
|
|
### The theme to use for the icons
|
2024-08-13 20:50:45 +02:00
|
|
|
icon_theme = "Qogir"
|
2024-08-09 13:55:19 +02:00
|
|
|
### The default notification window
|
|
|
|
### Can be a single string or a vector of strings(for multi-monitor support)
|
|
|
|
eww_notification_window = "notification_overlay"
|
|
|
|
### The default notification widget
|
|
|
|
eww_notification_widget = "notification"
|
|
|
|
### The variable which contains the literal for the notifications
|
|
|
|
eww_notification_var = "end-notifications"
|
|
|
|
|
|
|
|
### The default history window
|
|
|
|
eww_history_window = "history-frame"
|
|
|
|
### The default history widget
|
|
|
|
eww_history_widget = "end-history"
|
|
|
|
### The variable which contains the literal for the history
|
|
|
|
eww_history_var = "end-histories"
|
|
|
|
|
|
|
|
### The default reply window
|
|
|
|
eww_reply_window = "reply-frame"
|
|
|
|
### The default reply widget
|
|
|
|
eww_reply_widget = "end-reply"
|
|
|
|
### The variable which contains the literal for the replies
|
|
|
|
eww_reply_var = "end-replies"
|
|
|
|
### The variable which contains content for the reply text
|
|
|
|
eww_reply_text = "end-reply-text"
|
|
|
|
### Max notifications to be preserved in history. In case of 0, all notifications will be preserved.
|
|
|
|
max_notifications = 10
|
|
|
|
### The orientation of the notifications. Can be either "v" or "h" or "vertical" or "horizontal" (Basically the eww orientation value)
|
|
|
|
notification_orientation = "v"
|
|
|
|
|
|
|
|
### The timeouts for different types of notifications in seconds. A value of 0 means that the notification will never timeout
|
|
|
|
[timeout]
|
|
|
|
low = 5
|
|
|
|
normal = 10
|
|
|
|
critical = 0
|