diff --git a/.gitignore b/.gitignore index 9de7d59..b750fba 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,6 @@ xmonad/.xmonad/*.errors xmonad/.xmonad/*.o xmonad/.xmonad/xmonad-x86_64-linux xmonad/.xmonad/build-x86_64-linux/ + +# ZSH plugins +oh-my-zsh/.oh-my-zsh/custom/plugins/ diff --git a/.wallpaper.png b/.wallpaper.png index 51ebabc..58eb4ca 100644 Binary files a/.wallpaper.png and b/.wallpaper.png differ diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml index ed9eb3c..367d96e 100644 --- a/alacritty/.config/alacritty/alacritty.yml +++ b/alacritty/.config/alacritty/alacritty.yml @@ -26,27 +26,27 @@ scrolling: font: # Normal (roman) font face normal: - family: Fira Code + family: Droid Sans Mono # The `style` can be specified to pick a specific face. style: Normal # Bold font face bold: - family: Fira Code + family: Droid Sans Mono # The `style` can be specified to pick a specific face. style: Bold # Italic font face italic: - family: Fira Code + family: Droid Sans Mono style: Italic # Bold italic font face bold_italic: - family: Fira Code + family: Droid Sans Mono # The `style` can be specified to pick a specific face. style: Bold Italic @@ -54,20 +54,14 @@ font: # Point size size: 10 - # Offset is the extra space around each character. `offset.y` can be thought of - # as modifying the line spacing, and `offset.x` as modifying the letter spacing. - offset: - x: 0 - y: 1 - # If `true`, bold text is drawn using the bright color variants. draw_bold_text_with_bright_colors: true colors: # Default colors primary: - background: "0x1d1f21" - foreground: "0xc5c8c6" + background: "0x181818" + foreground: "0xffffff" # Colors the cursor will use if `custom_cursor_colors` is true cursor: @@ -109,7 +103,7 @@ cursor: # - ▇ Block # - _ Underline # - | Beam - style: Beam + style: Block key_bindings: # (Windows, Linux, and BSD only) diff --git a/eww/.config/eww/eww.scss b/eww/.config/eww/eww.scss index b2f0e97..55c2310 100644 --- a/eww/.config/eww/eww.scss +++ b/eww/.config/eww/eww.scss @@ -40,7 +40,7 @@ tooltip { .bar-1, .bar-2 { - background-color: rgba(29, 31, 33, 0.65); + background-color: rgba(0, 0, 0, 0.5); } .main-cont { diff --git a/picom/.config/picom/picom.conf b/picom/.config/picom/picom.conf index 44d068c..21aaf1b 100644 --- a/picom/.config/picom/picom.conf +++ b/picom/.config/picom/picom.conf @@ -345,7 +345,7 @@ log-level = "warn"; ################################# # Corners # ################################# -corner-radius = 0.0; +corner-radius = 6.0; rounded-corners-exclude = [ #"window_type = 'normal'", # "class_g = 'awesome'", diff --git a/zsh/.zshrc b/zsh/.zshrc index 736308c..281f020 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -8,7 +8,7 @@ export ZSH="/home/elal/.oh-my-zsh" # load a random theme each time oh-my-zsh is loaded, in which case, # to know which specific one was loaded, run: echo $RANDOM_THEME # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes -ZSH_THEME="almtech2" +ZSH_THEME="edvardm" # Good themes: # afowler # bira @@ -75,7 +75,7 @@ ZSH_THEME="almtech2" # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ # Example format: plugins=(rails git textmate ruby lighthouse) # Add wisely, as too many plugins slow down shell startup. -plugins=(git) +plugins=(git zsh-autosuggestions zsh-syntax-highlighting fast-syntax-highlighting) source $ZSH/oh-my-zsh.sh