Deadd Configuration
- Enable follow mouse for notifications and center - Increase width of notifications - Decrease margins around images in notifications - Add comments for mouse buttons - Add color variables to deadd.css for future use
This commit is contained in:
@@ -19,7 +19,7 @@ monitor = 0
|
||||
|
||||
# If true, the notification center will open on the screen, on which the
|
||||
# mouse is
|
||||
followMouse = false
|
||||
followMouse = true
|
||||
|
||||
# (Optional) Command to run at startup. This can be used to setup
|
||||
# button states.
|
||||
@@ -82,14 +82,14 @@ distanceRight = 50
|
||||
distanceBetween = 20
|
||||
|
||||
# Width of the notifications.
|
||||
width = 300
|
||||
width = 500
|
||||
|
||||
# Monitor on which the notification will be printed.
|
||||
monitor = 0
|
||||
|
||||
# If true, the notifications will open on the screen, on which the
|
||||
# mouse is
|
||||
followMouse = false
|
||||
followMouse = true
|
||||
|
||||
# The display size of the application icons in the notification
|
||||
# pop-ups and in the notification center
|
||||
@@ -101,22 +101,30 @@ maxImageSize = 100
|
||||
|
||||
# The margin around the top, bottom, left, and right of notification
|
||||
# images. Applies to popup notifications and in-center notifications.
|
||||
imageMarginTop = 15
|
||||
imageMarginBottom = 15
|
||||
imageMarginLeft = 15
|
||||
imageMarginRight = 0
|
||||
imageMarginTop = 5
|
||||
imageMarginBottom = 5
|
||||
imageMarginLeft = 5
|
||||
imageMarginRight = 5
|
||||
|
||||
# Truncates notification bodies with '...' at the specified number of
|
||||
# lines. If -1 is specified, the body text will not be truncated.
|
||||
# Applies only to popup notifications
|
||||
shortenBody = 5
|
||||
|
||||
# The mouse button for closing a popup. Must be either "mouse1",
|
||||
# "mouse2", "mouse3", "mouse4", or "mouse5"
|
||||
# The mouse button for closing a popup.
|
||||
# mouse1 (Left button)
|
||||
# mouse2 (Wheel button click / Middle button)
|
||||
# mouse3 (Right button)
|
||||
# mouse4 (Wheel up)
|
||||
# mouse5 (Wheel down)
|
||||
dismissButton = mouse1
|
||||
|
||||
# The mouse button for opening a popup with the default action.
|
||||
# Must be either "mouse1", "mouse2", "mouse3", "mouse4", or "mouse5"
|
||||
# mouse1 (Left button)
|
||||
# mouse2 (Wheel button click / Middle button)
|
||||
# mouse3 (Right button)
|
||||
# mouse4 (Wheel up)
|
||||
# mouse5 (Wheel down)
|
||||
defaultActionButton = mouse3
|
||||
|
||||
[buttons]
|
||||
|
@@ -33,3 +33,25 @@
|
||||
* font-family: monospace;
|
||||
* }
|
||||
*/
|
||||
|
||||
/* :root {
|
||||
--color-foreground: #f8f8f2;
|
||||
--color-background: #282a36;
|
||||
--color-black1: #000000;
|
||||
--color-black2: #4d4d4d;
|
||||
--color-white1: #e6e6e6;
|
||||
--color-white2: #bfbfbf;
|
||||
--color-red1: #ff5555;
|
||||
--color-red2: #ff6e67;
|
||||
--color-green1: #50fa7b;
|
||||
--color-green2: #5af78e;
|
||||
--color-yellow1: #f1fa8c;
|
||||
--color-yellow2: #f4f99d;
|
||||
--color-purple1: #bd93f9;
|
||||
--color-purple2: #caa9fa;
|
||||
--color-pink1: #ff79c6;
|
||||
--color-pink2: #ff92d0;
|
||||
--color-cyan1: #8be9fd;
|
||||
--color-cyan2: #9aedfe;
|
||||
--color-orange: #ffb86c;
|
||||
} */
|
||||
|
Reference in New Issue
Block a user