1
0
Fork 0

Compare commits

...

4 commits

Author SHA1 Message Date
c4d03f75d0 zsh: fix man 2023-11-25 00:02:28 +01:00
51b8d49c4b dunst 2023-11-25 00:02:28 +01:00
f4c9f41973 kitty: fix font 2023-11-25 00:02:28 +01:00
2b419eba1a dunst 2023-11-25 00:02:28 +01:00
4 changed files with 10 additions and 9 deletions

View file

@ -86,7 +86,7 @@
### Text ### ### Text ###
font = Mononoki 8 font = Hack 8
# The spacing between lines. If the height is smaller than the # The spacing between lines. If the height is smaller than the
# font height, it will get raised to the font height. # font height, it will get raised to the font height.
@ -126,7 +126,7 @@
# %n progress value if set without any extra characters # %n progress value if set without any extra characters
# %% Literal % # %% Literal %
# Markup is allowed # Markup is allowed
format = "<b>%s</b>\n%b" format = "<b>%s</b>\n%b\n%p"
# Alignment of message text. # Alignment of message text.
# Possible values are "left", "center" and "right". # Possible values are "left", "center" and "right".
@ -180,10 +180,10 @@
### Misc/Advanced ### ### Misc/Advanced ###
# dmenu path. # dmenu path.
dmenu = /usr/bin/dmenu -p dunst: dmenu = /usr/bin/rofi -dmenu -p dunst:
# Browser for opening urls in context menu. # Browser for opening urls in context menu.
browser = /usr/bin/firefox -new-tab browser = /usr/bin/xdg-open
# Always run rule-defined scripts, even if the notification is suppressed # Always run rule-defined scripts, even if the notification is suppressed
always_run_script = true always_run_script = true

View file

@ -50,7 +50,7 @@ font_size 12.0
#: to get BIDI support, because it will force kitty to always treat #: to get BIDI support, because it will force kitty to always treat
#: the text as LTR, which FriBidi expects for terminals. #: the text as LTR, which FriBidi expects for terminals.
# symbol_map symbol_map U+E000-U+F8FF Symbols Nerd Font Mono
#: E.g. symbol_map U+E0A0-U+E0A3,U+E0C0-U+E0C7 PowerlineSymbols #: E.g. symbol_map U+E0A0-U+E0A3,U+E0C0-U+E0C7 PowerlineSymbols
@ -2446,5 +2446,4 @@ map kitty_mod+F2 launch --type overlay --cwd=current lazygit
#: }}} #: }}}
# include Gruvbox Dark Hard.conf # include Gruvbox Dark Hard.conf

View file

@ -1,9 +1,11 @@
[Unit] [Unit]
Description=Notification daemon Description=Dunst notification daemon
Documentation=man:dunst(1)
PartOf=hlwm.target PartOf=hlwm.target
[Service] [Service]
Type=simple Type=dbus
BusName=org.freedesktop.Notifications
ExecStart=/usr/bin/dunst ExecStart=/usr/bin/dunst
[Install] [Install]

View file

@ -27,7 +27,7 @@ pocompile() {
} }
man() { man() {
if [[ "$1" = -k ]]; then if [[ "$1" = -k ]] || [[ "$1" = '---' ]] ; then
command man "$@" command man "$@"
elif [[ -n "$1" ]]; then elif [[ -n "$1" ]]; then
vim man://$1 vim man://$1