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/*.o
xmonad/.xmonad/xmonad-x86_64-linux xmonad/.xmonad/xmonad-x86_64-linux
xmonad/.xmonad/build-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: font:
# Normal (roman) font face # Normal (roman) font face
normal: normal:
family: Fira Code family: Droid Sans Mono
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
style: Normal style: Normal
# Bold font face # Bold font face
bold: bold:
family: Fira Code family: Droid Sans Mono
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
style: Bold style: Bold
# Italic font face # Italic font face
italic: italic:
family: Fira Code family: Droid Sans Mono
style: Italic style: Italic
# Bold italic font face # Bold italic font face
bold_italic: bold_italic:
family: Fira Code family: Droid Sans Mono
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
style: Bold Italic style: Bold Italic
@ -54,20 +54,14 @@ font:
# Point size # Point size
size: 10 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. # If `true`, bold text is drawn using the bright color variants.
draw_bold_text_with_bright_colors: true draw_bold_text_with_bright_colors: true
colors: colors:
# Default colors # Default colors
primary: primary:
background: "0x1d1f21" background: "0x181818"
foreground: "0xc5c8c6" foreground: "0xffffff"
# Colors the cursor will use if `custom_cursor_colors` is true # Colors the cursor will use if `custom_cursor_colors` is true
cursor: cursor:
@ -109,7 +103,7 @@ cursor:
# - ▇ Block # - ▇ Block
# - _ Underline # - _ Underline
# - | Beam # - | Beam
style: Beam style: Block
key_bindings: key_bindings:
# (Windows, Linux, and BSD only) # (Windows, Linux, and BSD only)

@ -40,7 +40,7 @@ tooltip {
.bar-1, .bar-1,
.bar-2 { .bar-2 {
background-color: rgba(29, 31, 33, 0.65); background-color: rgba(0, 0, 0, 0.5);
} }
.main-cont { .main-cont {

@ -345,7 +345,7 @@ log-level = "warn";
################################# #################################
# Corners # # Corners #
################################# #################################
corner-radius = 0.0; corner-radius = 6.0;
rounded-corners-exclude = [ rounded-corners-exclude = [
#"window_type = 'normal'", #"window_type = 'normal'",
# "class_g = 'awesome'", # "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, # 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 # to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
ZSH_THEME="almtech2" ZSH_THEME="edvardm"
# Good themes: # Good themes:
# afowler # afowler
# bira # bira
@ -75,7 +75,7 @@ ZSH_THEME="almtech2"
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse) # Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup. # 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 source $ZSH/oh-my-zsh.sh

Loading…
Cancel
Save