diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf index 9c2828f..1761473 100644 --- a/.config/kitty/kitty.conf +++ b/.config/kitty/kitty.conf @@ -28,4 +28,4 @@ allow_remote_control yes map kitty_mod+n new_os_window_with_cwd -include themes/dark.conf +include themes/light.conf diff --git a/.config/sway/config.d/display b/.config/sway/config.d/display index e17d581..0f77b4d 100644 --- a/.config/sway/config.d/display +++ b/.config/sway/config.d/display @@ -1,7 +1,7 @@ # vim: filetype=i3config # wallpaper -output * bg $(find ~/Pictures/Wallpapers/dark -type f | shuf -n1) fill +output * bg $(find ~/Pictures/Wallpapers/light -type f | shuf -n1) fill # laptop output mode set $laptop eDP-1 diff --git a/.config/sway/config.d/theme b/.config/sway/config.d/theme index 4dc4ecf..d609893 100644 --- a/.config/sway/config.d/theme +++ b/.config/sway/config.d/theme @@ -1,3 +1,3 @@ # vim: filetype=i3config -include ~/.config/sway/config.d/themes/dark +include ~/.config/sway/config.d/themes/light diff --git a/.config/sway/scripts/themes.sh b/.config/sway/scripts/themes.sh index 27146fb..836ebf8 100755 --- a/.config/sway/scripts/themes.sh +++ b/.config/sway/scripts/themes.sh @@ -11,10 +11,14 @@ else exit 1 fi -sed -i $command ~/.config/sway/config.d/theme -sed -i $command ~/.config/sway/config.d/display -sed -i $command ~/.config/waybar/style.css sed -i $command ~/.config/kitty/kitty.conf +sed -i $command ~/.config/sway/config.d/display +sed -i $command ~/.config/sway/config.d/theme +sed -i $command ~/.config/swaync/style.css +sed -i $command ~/.config/waybar/style.css +sed -i $command ~/.config/wofi/config + +swaync-client -rs & # more settings if [ $scheme = "light" ]; then diff --git a/.config/swaync/dark.less b/.config/swaync/dark.less new file mode 100644 index 0000000..eaa21c6 --- /dev/null +++ b/.config/swaync/dark.less @@ -0,0 +1,10 @@ +@define-color border-color #7f868c; +@define-color bg #2e3338; +@define-color bg-trans rgba(46, 51, 56, 0.9); +@define-color bg-hover #373d41; +@define-color bg-focus #474f54; +@define-color bg-selected #3f464b; +@define-color fg #bfddb2; +@define-color orange #e5a46b; +@define-color blue #82abbc; + diff --git a/.config/swaync/light.less b/.config/swaync/light.less new file mode 100644 index 0000000..9c4acbe --- /dev/null +++ b/.config/swaync/light.less @@ -0,0 +1,10 @@ +@define-color border-color #5f6d67; +@define-color bg #f3efda; +@define-color bg-trans rgba(243, 239, 218, 0.9); +@define-color bg-hover #d3dbc8; +@define-color bg-focus #d3dbc8; +@define-color bg-selected #d3dbc8; +@define-color fg #323d43; +@define-color orange #dfa000; +@define-color blue #3a94c5; + diff --git a/.config/swaync/style.css b/.config/swaync/style.css index 88654fb..74e80e8 100644 --- a/.config/swaync/style.css +++ b/.config/swaync/style.css @@ -2,15 +2,7 @@ * vim: ft=less */ -@define-color border-color #7f868c; -@define-color bg #2e3338; -@define-color bg-trans rgba(46, 51, 56, 0.9); -@define-color bg-hover #373d41; -@define-color bg-focus #474f54; -@define-color bg-selected #3f464b; -@define-color fg #bfddb2; -@define-color orange #e5a46b; -@define-color blue #82abbc; +@import "light.less"; .notification-row { outline: none; diff --git a/.config/waybar/style.css b/.config/waybar/style.css index 5fb4dbc..dd36574 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -10,7 +10,7 @@ min-height: 0; } -@import "dark.less"; +@import "light.less"; window#waybar { background: @background; diff --git a/.config/wofi/config b/.config/wofi/config index 5d44a24..4174f7e 100644 --- a/.config/wofi/config +++ b/.config/wofi/config @@ -1,5 +1,5 @@ # style -style=/home/juan/.config/wofi/style.css +style=/home/juan/.config/wofi/light.css width=600 height=500 diff --git a/.config/wofi/style.css b/.config/wofi/dark.css similarity index 100% rename from .config/wofi/style.css rename to .config/wofi/dark.css diff --git a/.config/wofi/light.css b/.config/wofi/light.css new file mode 100644 index 0000000..1b990aa --- /dev/null +++ b/.config/wofi/light.css @@ -0,0 +1,57 @@ +window { + margin: 0px; + border: 1px solid #5f6d67; + border-radius: 3px; + background-color: #fdf6e3; + font-family: monospace; + font-size: 14px; +} + +#input { + margin: 5px; + border: 1px solid #8da101; + color: #323d43; + background-color: #e4e1cd; +} + +#input image { + color: #a7c080; +} + +#inner-box { + margin: 5px; + border: none; + background-color: #fdf6e3; +} + +#outer-box { + margin: 5px; + border: none; + background-color: #fdf6e3; +} + +#scroll { + margin: 0px; + border: none; +} + +#text { + margin: 5px; + border: none; + color: #323d43; +} + +#entry:selected { + background-color: #d3dbc8; + color: #323d43; + border-radius: 3px; + font-weight: normal; +} + +#text:selected { + background-color: #d3dbc8; + color: #323d43; + border-radius: 3px; + font-weight: bold; +} +