summaryrefslogtreecommitdiff
path: root/dunst
diff options
context:
space:
mode:
authorxAlpharax <42233094+xAlpharax@users.noreply.github.com>2024-05-26 20:06:47 +0300
committerxAlpharax <42233094+xAlpharax@users.noreply.github.com>2024-05-26 20:06:47 +0300
commitceae010375308744bfe381ee2c8126dbcfefdf88 (patch)
tree588ce5581d627dbc7ffa5e0c5aa46f464a1bd878 /dunst
parent6ed9c8a9285b4b4f2b944a4bee16bd84ca65ec52 (diff)
Lots of visual changes and quality of life.
Dunst configured correctly. NeoVim colorscheme configured better. Updates to many config files. Changes to be committed: modified: Vencord/settings/settings.json modified: X11/Xresources modified: X11/xinit new file: appimageupdate modified: btop/btop.conf modified: clockpower modified: dunst/dunstrc new file: dunst/launch.sh modified: keybinds modified: lock modified: nvim/colors/hybrid.vim new file: nvim/colors/hybrid.vim.bkup modified: nvim/init.vim new file: qBittorrent/ICEBERG.qbtheme new file: qBittorrent/ayuDark.qbtheme modified: zsh/aliases modified: zsh/env modified: zsh/zshrc
Diffstat (limited to 'dunst')
-rw-r--r--dunst/dunstrc32
-rwxr-xr-xdunst/launch.sh9
2 files changed, 26 insertions, 15 deletions
diff --git a/dunst/dunstrc b/dunst/dunstrc
index f3279f0..bf78393 100644
--- a/dunst/dunstrc
+++ b/dunst/dunstrc
@@ -15,7 +15,7 @@
#
# If this option is set to mouse or keyboard, the monitor option
# will be ignored.
- follow = mouse
+ follow = keyboard
# The geometry of the window:
# [{width}]x{height}[+/-{x}+/-{y}]
@@ -29,7 +29,9 @@
# the top and down respectively.
# The width can be negative. In this case the actual width is the
# screen width minus the width defined in within the geometry option.
- geometry = "200x50-700+40"
+ #geometry = "200x50-700+40"
+ width = 200
+ offset = 10x30
# Show how many messages are currently hidden (because of geometry).
indicate_hidden = yes
@@ -41,12 +43,12 @@
# The transparency of the window. Range: [0; 100].
# This option will only work if a compositing window manager is
# present (e.g. xcompmgr, compiz, etc.).
- transparency = 25
+ transparency = 0
# The height of the entire notification. If the height is smaller
# than the font height and padding combined, it will be raised
# to the font height and padding.
- notification_height = 0
+ notification_height = 1
# Draw a line of "separator_height" pixel height between two
# notifications.
@@ -72,7 +74,7 @@
# * foreground: use the same color as the foreground;
# * frame: use the same color as the frame;
# * anything else will be interpreted as a X color.
- separator_color = auto
+ separator_color = frame
# Sort messages by urgency.
sort = yes
@@ -86,11 +88,11 @@
### Text ###
- font = Inclonsolata 17
+ font = Inclonsolata 12
# The spacing between lines. If the height is smaller than the
# font height, it will get raised to the font height.
- line_height = 0
+ line_height = 1
# Possible values are:
# full: Allow a small subset of html markup in notifications:
@@ -126,7 +128,7 @@
# %n progress value if set without any extra characters
# %% Literal %
# Markup is allowed
- format = "<b>%s %n</b>\n%b"
+ format = "<b>%s</b>\n%b"
# Alignment of message text.
# Possible values are "left", "center" and "right".
@@ -153,7 +155,7 @@
ignore_newline = no
# Stack together notifications with the same content
- stack_duplicates = true
+ stack_duplicates = false
# Hide the count of stacked notifications with the same content
hide_duplicate_count = true
@@ -175,8 +177,8 @@
max_icon_size = 32
# Paths to default icons.
- # icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/
#icon_path = /usr/share/icons/Arc/status/32/:/usr/share/icons/Arc/devices/32/
+
### History ###
# Should a notification popped up from history be sticky or timeout
@@ -189,10 +191,10 @@
### Misc/Advanced ###
# dmenu path.
- dmenu = /usr/bin/dmenu -p dunst:
+ dmenu = /home/alphara/.config/dmenu.conf -p dunst:
# Browser for opening urls in context menu.
- browser = /usr/bin/firefox -new-tab
+ browser = /bin/firefox -new-tab
# Always run rule-defined scripts, even if the notification is suppressed
always_run_script = true
@@ -215,7 +217,7 @@
# mesg: Important Messages
# info: all unimportant stuff
# debug: all less than unimportant stuff
- verbosity = info
+ verbosity = debug
# Define the corner radius of the notification window
# in pixel size. If the radius is 0, you have no rounded
@@ -295,7 +297,7 @@
background = "#0a001f"
foreground = "#ace6f0"
frame_color = "#ace6f0"
- timeout = 10
+ timeout = 5
# Icon for notifications with low urgency, uncomment to enable
#icon = /usr/share/icons/Arc/actions/16/go-bottom.png
@@ -311,7 +313,7 @@
background = "#0a001f"
foreground = "#ace6f0"
frame_color = "#ace6f0"
- timeout = 10
+ timeout = 15
# Icon for notifications with critical urgency, uncomment to enable
#icon = /usr/share/icons/Arc/actions/16/media-playback-stop.png
diff --git a/dunst/launch.sh b/dunst/launch.sh
new file mode 100755
index 0000000..9d6162b
--- /dev/null
+++ b/dunst/launch.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+pkill dunst
+
+dunst -config ~/.config/dunst/dunstrc &
+
+dunstify -u critical "Test message" "critical test 1"
+dunstify -u normal "Test message" "normal test 2"
+dunstify -u low "Test message" "low test 3"