sync + misc: Added end-rs
config
This commit is contained in:
parent
c5e9e5f351
commit
13f8a8707c
2 changed files with 43 additions and 0 deletions
42
misc/end-rs/config.toml
Normal file
42
misc/end-rs/config.toml
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
### Path to the eww binary
|
||||||
|
eww_binary_path = "/usr/bin/eww"
|
||||||
|
### Where to find the icons for the notifications
|
||||||
|
icon_dirs = [
|
||||||
|
"/usr/share/icons",
|
||||||
|
"/usr/share/pixmaps",
|
||||||
|
]
|
||||||
|
### The theme to use for the icons
|
||||||
|
icon_theme = "Adwaita"
|
||||||
|
### 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
|
1
sync
1
sync
|
@ -57,6 +57,7 @@ synced_files = [
|
||||||
("misc/picom/", "~/.config/picom/"),
|
("misc/picom/", "~/.config/picom/"),
|
||||||
("misc/runst/", "~/.config/runst/"),
|
("misc/runst/", "~/.config/runst/"),
|
||||||
("misc/mako/", "~/.config/mako/"),
|
("misc/mako/", "~/.config/mako/"),
|
||||||
|
("misc/end-rs/", "~/.config/end-rs/"),
|
||||||
("misc/swayosd/", "~/.config/swayosd/"),
|
("misc/swayosd/", "~/.config/swayosd/"),
|
||||||
("misc/anyrun/", "~/.config/anyrun/"),
|
("misc/anyrun/", "~/.config/anyrun/"),
|
||||||
("misc/x11-toggle-gpu/", "~/.local/share/x11-toggle-gpu/"),
|
("misc/x11-toggle-gpu/", "~/.local/share/x11-toggle-gpu/"),
|
||||||
|
|
Loading…
Reference in a new issue