refactor: Gitignore & style fixes

laptop
Elias Almqvist 1 year ago
parent 44b174a36d
commit 421393a961
No known key found for this signature in database
GPG Key ID: E31A99CE3E75A158
  1. 3
      .gitignore
  2. BIN
      .wallpaper.png
  3. 20
      alacritty/.config/alacritty/alacritty.yml
  4. 2
      eww/.config/eww/eww.scss
  5. 2
      picom/.config/picom/picom.conf
  6. 4
      zsh/.zshrc

3
.gitignore vendored

@ -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/

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 MiB

After

Width:  |  Height:  |  Size: 20 MiB

@ -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)

@ -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 {

@ -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'",

@ -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

Loading…
Cancel
Save