aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/dunst/dunstrc6
-rw-r--r--config/qutebrowser/homepage/index.html4
-rwxr-xr-xconfig/xorg/init.sh4
-rw-r--r--config/zsh/plugins/timer.zsh2
-rw-r--r--config/zsh/theme.zsh8
5 files changed, 13 insertions, 11 deletions
diff --git a/config/dunst/dunstrc b/config/dunst/dunstrc
index f537440..36a7a91 100644
--- a/config/dunst/dunstrc
+++ b/config/dunst/dunstrc
@@ -131,17 +131,17 @@
frame_color = "#6f8285"
[urgency_low]
- background = "#7e6aD3"
+ background = "#042f2f"
foreground = "#ffffff"
timeout = 3
[urgency_normal]
- background = "#4e3aA3"
+ background = "#007070"
foreground = "#ffffff"
timeout = 5
[urgency_critical]
- background = "#d63031"
+ background = "#7c162e"
foreground = "#ffffff"
timeout = 10
diff --git a/config/qutebrowser/homepage/index.html b/config/qutebrowser/homepage/index.html
index b27ea82..e703030 100644
--- a/config/qutebrowser/homepage/index.html
+++ b/config/qutebrowser/homepage/index.html
@@ -6,8 +6,8 @@
<title>New tab</title>
<style>
:root {
- --col-primary: #14121e;
- --col-accent: #5e4ab3;
+ --col-primary: #101414;
+ --col-accent: #007070;
--col-accent-light: #8e7ae3;
}
html, body {
diff --git a/config/xorg/init.sh b/config/xorg/init.sh
index d3a2473..f289c02 100755
--- a/config/xorg/init.sh
+++ b/config/xorg/init.sh
@@ -14,10 +14,10 @@ xset s noblank;
# Typing rate
xset r rate 350 30;
-# Display settings
+# Display settings: day mode
~/scripts/commands/:day
-# Sound
+# Sound settings
amixer set Capture nocap;
amixer set Master off;
diff --git a/config/zsh/plugins/timer.zsh b/config/zsh/plugins/timer.zsh
index 73d9673..3610877 100644
--- a/config/zsh/plugins/timer.zsh
+++ b/config/zsh/plugins/timer.zsh
@@ -7,7 +7,7 @@ function precmd() {
now=$(($(date +%s%0N)/1000000))
elapsed=$(($now-$timer))
- export RPROMPT="%F{magenta}${elapsed}ms %{$reset_color%}"
+ export RPROMPT="%F{cyan}${elapsed}ms %{$reset_color%}"
unset timer
fi
}
diff --git a/config/zsh/theme.zsh b/config/zsh/theme.zsh
index c6341df..e2f476b 100644
--- a/config/zsh/theme.zsh
+++ b/config/zsh/theme.zsh
@@ -1,7 +1,9 @@
setopt prompt_subst
+autoload -U colors && colors
+
# Theme
-COL_ACCENT=13;
+COL_ACCENT="#007070";
COL_DIR=$COL_ACCENT;
@@ -17,7 +19,7 @@ git_changes() { git status --porcelain 2> /dev/null | wc -l; }
# Prompt dir
p_dir() {
- segment "%2~" $COL_DIR white;
+ segment "%2~" $COL_DIR brightwhite;
}
# Prompt terminal status
@@ -47,7 +49,7 @@ prompt() {
p_status;
p_dir;
echo -n '$(p_git)';
- segment "󱄅" black 13;
+ segment "󱄅" black "$COL_ACCENT";
}
export PROMPT="$(prompt) ";