dotfiles

config files and scripts
git clone git://git.hanetzok.net/dotfiles
Log | Files | Refs

commit 7294dd93be6871c3f2ac2cee141f5cc944f658ef
parent e4bd05788b2e26f201668d7bc0e1b4d7484a4f1b
Author: Markus Hanetzok <markus@hanetzok.net>
Date:   Thu, 18 Dec 2025 12:00:44 +0100

change theming

Diffstat:
M.config/dunst/dunstrc | 20++++++++++----------
M.config/fontconfig/fonts.conf | 2+-
M.config/newsboat/config | 10+++++-----
M.config/x11/Xresources | 54+++++++++++++++++++++++++++---------------------------
M.config/zsh/.zshrc | 2+-
D.local/bin/shutdownsync | 5-----
M.local/share/wallpaper.png | 0
7 files changed, 44 insertions(+), 49 deletions(-)

diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc @@ -3,31 +3,31 @@ follow = keyboard width = 370 height = (0, 350) - origin = top-left - offset = (0, 19) + origin = top-center + offset = (0, 38) padding = 4 horizontal_padding = 10 transparency = 10 font = Monospace 12 format = "<b>%s</b>\n%b" - frame_color = "#38abe4" + frame_color = "#ffff00" separator_color = frame [urgency_low] - background = "#1c252d" - foreground = "#bfbfbf" + background = "#0faaaa + foreground = "#000000" timeout = 10 [urgency_normal] - background = "#1c252d" - foreground = "#bfbfbf" + background = "#00ffff" + foreground = "#000000" timeout = 10 [urgency_critical] - background = "#ff6f61" - foreground = "#1c252d" - frame_color = "#1c252d" + background = "#ff0000" + foreground = "#000000" + frame_color = "#cc0000" timeout = 0 # vim: ft=cfg diff --git a/.config/fontconfig/fonts.conf b/.config/fontconfig/fonts.conf @@ -22,9 +22,9 @@ <alias> <family>monospace</family> <prefer> + <family>Terminus</family> <family>JetBrains Mono</family> <family>IBM Plex Mono</family> - <family>Terminus</family> </prefer> </alias> </fontconfig> diff --git a/.config/newsboat/config b/.config/newsboat/config @@ -24,7 +24,7 @@ bind-key x pb-delete color listnormal cyan default color listfocus black yellow standout bold -color listnormal_unread blue default +color listnormal_unread red default color listfocus_unread yellow default bold color info red black bold color article white default bold @@ -45,11 +45,11 @@ highlight all "---.*---" yellow highlight feedlist ".*(0/0))" black highlight article "(^Feed:.*|^Title:.*|^Author:.*)" cyan default bold highlight article "(^Link:.*|^Date:.*)" default default -highlight article "https?://[^ ]+" green default -highlight article "^(Title):.*$" blue default +highlight article "https?://[^ ]+" red default +highlight article "^(Title):.*$" red default highlight article "\\[[0-9][0-9]*\\]" magenta default bold -highlight article "\\[image\\ [0-9]+\\]" green default bold +highlight article "\\[image\\ [0-9]+\\]" red default bold highlight article "\\[embedded flash: [0-9][0-9]*\\]" green default bold highlight article ":.*\\(link\\)$" cyan default -highlight article ":.*\\(image\\)$" blue default +highlight article ":.*\\(image\\)$" red default highlight article ":.*\\(embedded flash\\)$" magenta default diff --git a/.config/x11/Xresources b/.config/x11/Xresources @@ -1,31 +1,31 @@ ! Dracula Xresources palette -*.foreground: #00ffff -*.background: #000000 -*.color0: #222222 -*.color8: #000000 -*.color1: #cc0000 -*.color9: #ff0000 -*.color2: #00cc00 -*.color10: #00ff00 -*.color3: #ccbb00 -*.color11: #ffff00 -*.color4: #3333ff -*.color12: #5555ff -*.color5: #cc00cc -*.color13: #ff00ff -*.color6: #00cccc -*.color14: #00ffff -*.color7: #dddddd +*.foreground: #ffffff +*.background: #003333 +*.color0: #000000 +*.color1: #ff0000 +*.color2: #00ff00 +*.color3: #ffff00 +*.color4: #0000ff +*.color5: #ff00ff +*.color6: #00ffff +*.color7: #aaaaaa +*.color8: #555555 +*.color9: #ff5555 +*.color10: #55ff55 +*.color11: #ffff55 +*.color12: #7979ff +*.color13: #ff55ff +*.color14: #55ffff *.color15: #ffffff -dwm.normbordercolor: #091833 -dwm.normbgcolor: #091833 -dwm.normfgcolor: #0abdc6 -dwm.selbordercolor: #ea00d9 -dwm.selbgcolor: #321959 -dwm.selfgcolor: #ea09d9 +dwm.normbordercolor: #00ffff +dwm.normbgcolor: #00ffff +dwm.normfgcolor: #000000 +dwm.selbordercolor: #ffff00 +dwm.selbgcolor: #ffff00 +dwm.selfgcolor: #000000 -dmenu.background: #091833 -dmenu.foreground: #0abdc6 -dmenu.selbackground: #321959 -dmenu.selforeground: #ea00d9 +dmenu.background: #00ffff +dmenu.foreground: #000000 +dmenu.selbackground: #ffff00 +dmenu.selforeground: #000000 diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc @@ -3,7 +3,7 @@ source "$HOME/.config/zsh/dracula-tty.sh" # Enable colors and change prompt: autoload -U colors && colors # Load colors -PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b " +PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[red]%}@%{$fg[green]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b " stty stop undef # Disable ctrl-s to freeze terminal. setopt interactive_comments diff --git a/.local/bin/shutdownsync b/.local/bin/shutdownsync @@ -1,5 +0,0 @@ -#!/bin/bash - -trgt="$HOME/storage/nextcloud/backup" - -rsync -rtvzP "$HOME/.mozilla" "$trgt/" diff --git a/.local/share/wallpaper.png b/.local/share/wallpaper.png Binary files differ.