-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
104 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,7 @@ | |
!/sc-im/** | ||
!/sxhkd/** | ||
!/tmux/** | ||
!/wired/** | ||
!/yay/** | ||
!/yazi/** | ||
!/zathura/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
( | ||
max_notifications: 5, | ||
timeout: 10_000, | ||
poll_interval: 16, // 16ms ~= 60hz / 7ms ~= 144hz. | ||
// history_length: 20, | ||
// replacing_enabled: true, | ||
// replacing_resets_timeout: true, | ||
min_window_width: 400, | ||
min_window_height: 100, | ||
|
||
debug: false, | ||
|
||
layout_blocks: [ | ||
// Layout 1, when an image is present. | ||
( | ||
name: "root", | ||
parent: "", | ||
hook: Hook(parent_anchor: TR, self_anchor: TR), | ||
offset: Vec2(x: -7.0, y: 7.0), | ||
// render_criteria: [HintImage], | ||
// https://github.com/Toqozz/wired-notify/wiki/NotificationBlock | ||
params: NotificationBlock(( | ||
monitor: 0, | ||
border_width: 3.0, | ||
border_rounding: 3.0, | ||
//background_color: Color(r: 0.15686, g: 0.15686, b: 0.15686, a: 1.0), | ||
background_color: Color(hex: "#282828"), | ||
border_color: Color(hex: "#ebdbb2"), | ||
border_color_low: Color(hex: "#282828"), | ||
border_color_critical: Color(hex: "#fb4934"), | ||
border_color_paused: Color(hex: "#fabd2f"), | ||
|
||
gap: Vec2(x: 0.0, y: 8.0), | ||
notification_hook: Hook(parent_anchor: BL, self_anchor: TL), | ||
)), | ||
), | ||
|
||
( | ||
name: "image", | ||
parent: "root", | ||
hook: Hook(parent_anchor: TL, self_anchor: TL), | ||
offset: Vec2(x: 0.0, y: 0.0), | ||
// https://github.com/Toqozz/wired-notify/wiki/ImageBlock | ||
params: ImageBlock(( | ||
image_type: Hint, | ||
// We actually want 4px padding, but the border is 3px. | ||
padding: Padding(left: 7.0, right: 0.0, top: 7.0, bottom: 7.0), | ||
rounding: 3.0, | ||
scale_width: 48, | ||
scale_height: 48, | ||
filter_mode: Lanczos3, | ||
)), | ||
), | ||
|
||
( | ||
name: "summary", | ||
parent: "image", | ||
hook: Hook(parent_anchor: MR, self_anchor: BL), | ||
offset: Vec2(x: 0.0, y: 0.0), | ||
// https://github.com/Toqozz/wired-notify/wiki/TextBlock | ||
params: TextBlock(( | ||
text: "%s", | ||
font: "Arial Bold 32", | ||
ellipsize: Middle, | ||
color: Color(hex: "#ebdbb2"), | ||
color_hovered: Color(hex: "#fbf1c7"), | ||
padding: Padding(left: 20.0, right: 20.0, top: 20.0, bottom: 0.0), | ||
dimensions: (width: (min: 150, max: 300), height: (min: 0, max: 0)), | ||
)), | ||
), | ||
|
||
( | ||
name: "body", | ||
parent: "summary", | ||
hook: Hook(parent_anchor: BL, self_anchor: TL), | ||
offset: Vec2(x: 0.0, y: -3.0), | ||
// https://github.com/Toqozz/wired-notify/wiki/ScrollingTextBlock | ||
params: ScrollingTextBlock(( | ||
text: "%b", | ||
font: "Arial 32", | ||
color: Color(hex: "#ebdbb2"), | ||
color_hovered: Color(hex: "#fbf1c7"), | ||
padding: Padding(left: 20.0, right: 20.0, top: 6.0, bottom: 20.0), | ||
width: (min: 150, max: 300), | ||
scroll_speed: 0.1, | ||
lhs_dist: 35.0, | ||
rhs_dist: 35.0, | ||
scroll_t: 1.0, | ||
)), | ||
), | ||
], | ||
// https://github.com/Toqozz/wired-notify/wiki/Shortcuts | ||
shortcuts: ShortcutsConfig ( | ||
notification_interact: 1, | ||
notification_close: 2, | ||
notification_action1: 3, | ||
), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters