diff options
author | Joe <bousset.rudy@gmail.com> | 2022-09-15 21:43:32 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-09-15 21:43:32 +0200 |
commit | fdebd61895580ce5b661cdfa07dbd66572fedfaf (patch) | |
tree | 656c3b3ac9f6fdc5baac8ae48db521576cefa4eb | |
parent | up (diff) | |
download | dotfiles-bsd-fdebd61895580ce5b661cdfa07dbd66572fedfaf.tar.gz dotfiles-bsd-fdebd61895580ce5b661cdfa07dbd66572fedfaf.tar.bz2 dotfiles-bsd-fdebd61895580ce5b661cdfa07dbd66572fedfaf.tar.xz dotfiles-bsd-fdebd61895580ce5b661cdfa07dbd66572fedfaf.tar.zst dotfiles-bsd-fdebd61895580ce5b661cdfa07dbd66572fedfaf.zip |
up
-rw-r--r-- | .config/abook/abookrc | 2 | ||||
-rw-r--r-- | .config/dunst/dunstrc | 6 | ||||
-rwxr-xr-x | .local/bin/status/sb-net | 3 |
3 files changed, 7 insertions, 4 deletions
diff --git a/.config/abook/abookrc b/.config/abook/abookrc index d47bf19..a6d78a0 100644 --- a/.config/abook/abookrc +++ b/.config/abook/abookrc @@ -21,7 +21,7 @@ set color_tab_border_fg = yellow set color_tab_border_bg = default set color_tab_label_fg = red set color_tab_label_bg = default -set color_field_name_fg = red +set color_field_name_fg = yellow set color_field_name_bg = default set color_field_value_fg = green set color_field_value_bg = default diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc index fd9c760..655f6b0 100644 --- a/.config/dunst/dunstrc +++ b/.config/dunst/dunstrc @@ -113,9 +113,9 @@ # NOTE: It might be helpful to run dunst -print in a terminal in order # to find fitting options for rules. -[espeak] # >shutup - summary = "*" # >shutup - script = /home/jozan/.local/bin/dunst_espeak.sh # >shutup +#[espeak] # >shutup +# summary = "*" # >shutup +# script = /home/jozan/.local/bin/dunst_espeak.sh # >shutup #[script-test] # summary = "*script*" diff --git a/.local/bin/status/sb-net b/.local/bin/status/sb-net index 2cc07da..6a3256b 100755 --- a/.local/bin/status/sb-net +++ b/.local/bin/status/sb-net @@ -1,6 +1,9 @@ #!/bin/sh # if ifconfig | grep -F ' active' >/dev/null; then +if ifconfig | grep '^tun' >/dev/null 2>&1; then + echo -n "歷 " +fi if ! ping -q -c1 -t1 8.8.8.8 >/dev/null 2>&1; then echo " " return |