From 1327e4210146de369b371ff9d4b013f29860117f Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Sun, 15 Aug 2021 14:30:38 +0200 Subject: [PATCH] Major overhaul & cleanup --- .config/alacritty/alacritty.yml | 131 ++++++++ .config/conky/conky.conf | 45 --- .config/conky/launch.sh | 4 - .config/neofetch/config.conf | 4 +- .config/nvim/init.vim | 2 +- .config/picom/launch | 2 +- .config/picom/picom.conf | 6 +- .config/polybar/config | 9 +- .config/ranger/rc.conf | 2 - .config/rofi/config.rasi | 138 -------- .config/rofi/dunst.rasi | 14 - .config/rofi/onedark.rasi | 103 ------ copydots.sh | 10 +- luke-st_config.h | 558 -------------------------------- preview.png | Bin 134588 -> 311429 bytes st | 1 - vimrc | 50 +-- wallpaper.jpg | Bin 297889 -> 0 bytes 18 files changed, 146 insertions(+), 933 deletions(-) create mode 100644 .config/alacritty/alacritty.yml delete mode 100644 .config/conky/conky.conf delete mode 100755 .config/conky/launch.sh delete mode 100644 .config/ranger/rc.conf delete mode 100644 .config/rofi/config.rasi delete mode 100644 .config/rofi/dunst.rasi delete mode 100644 .config/rofi/onedark.rasi delete mode 100644 luke-st_config.h delete mode 160000 st delete mode 100644 wallpaper.jpg diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml new file mode 100644 index 0000000..de7f909 --- /dev/null +++ b/.config/alacritty/alacritty.yml @@ -0,0 +1,131 @@ +# Configuration for Alacritty, the GPU enhanced terminal emulator. +# + +env: + TERM: xterm-256color + +window: + padding: + x: 18 + y: 18 + + # Window title + title: Terminal + + # Window class (Linux/BSD only): + class: + # Application instance name + instance: Alacritty + # General application class + general: Alacritty + + +scrolling: + history: 5000 + +# Font configuration +font: + # Normal (roman) font face + normal: + + family: monospace + + # The `style` can be specified to pick a specific face. + style: Regular + + # Bold font face + bold: + + family: monospace + + # The `style` can be specified to pick a specific face. + style: Bold + + # Italic font face + italic: + + style: Italic + + # Bold italic font face + bold_italic: + + family: monospace + + # The `style` can be specified to pick a specific face. + style: Bold Italic + + # 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 (Tomorrow Night Bright) +colors: + # Default colors + primary: + background: '0x111015' + foreground: '0xfefefe' + + selection: + text: '0xbbc2cf' + + # Normal colors + normal: + black: '0x282a2e' + red: '0xa54242' + green: '0x8c9440' + yellow: '0xde935f' + blue: '0x5f819d' + magenta: '0x85678f' + cyan: '0x5e8d87' + white: '0x707880' + + # Bright colors + bright: + black: '0x373b41' + red: '0xcc6666' + green: '0xb5bd68' + yellow: '0xf0c674' + blue: '0x81a2be' + magenta: '0xb294bb' + cyan: '0x8abeb7' + white: '0xc5c8c6' + +# Window opacity as a floating point number from `0.0` to `1.0`. +# The value `0.0` is completely transparent and `1.0` is opaque. +background_opacity: 1.0 + +cursor: + # Values for `style`: + # - ▇ Block + # - _ Underline + # - | Beam + style: Beam + +key_bindings: + # (Windows, Linux, and BSD only) + - { key: V, mods: Control|Shift, action: Paste } + - { key: C, mods: Control|Shift, action: Copy } + - { key: Insert, mods: Shift, action: PasteSelection } + - { key: Key0, mods: Control, action: ResetFontSize } + - { key: Equals, mods: Control, action: IncreaseFontSize } + - { key: Plus, mods: Control, action: IncreaseFontSize } + - { key: Minus, mods: Control, action: DecreaseFontSize } + - { key: Minus, mods: Control, action: DecreaseFontSize } + + - { key: Paste, action: Paste } + - { key: Copy, action: Copy } + - { key: L, mods: Control, action: ClearLogNotice } + - { key: L, mods: Control, chars: "\x0c" } + - { key: PageUp, mods: Shift, action: ScrollPageUp, mode: ~Alt } + - { key: PageDown, mods: Shift, action: ScrollPageDown, mode: ~Alt } + - { key: Home, mods: Shift, action: ScrollToTop, mode: ~Alt } + - { key: End, mods: Shift, action: ScrollToBottom, mode: ~Alt } + diff --git a/.config/conky/conky.conf b/.config/conky/conky.conf deleted file mode 100644 index 4be6c64..0000000 --- a/.config/conky/conky.conf +++ /dev/null @@ -1,45 +0,0 @@ -conky.config = { - alignment = 'middle_middle', - background = true, - border_width = 1, - cpu_avg_samples = 2, - default_color = 'white', - default_outline_color = 'red', - default_shade_color = 'white', - double_buffer = true, - draw_borders = false, - draw_graph_borders = true, - draw_outline = false, - draw_shades = false, - extra_newline = false, - font = 'Fira Code:size=25', - gap_x = 0, - gap_y = 0, - minimum_height = 5, - minimum_width = 260, - maximum_width = 260, - net_avg_samples = 2, - no_buffers = true, - out_to_console = false, - out_to_ncurses = false, - out_to_stderr = false, - out_to_x = true, - own_window = true, - own_window_class = 'Conky', - own_window_type = 'override', - own_window_title = 'Conky', - own_window_transparent = true, - show_graph_range = false, - show_graph_scale = false, - stippled_borders = 0, - update_interval = 1.0, - uppercase = false, - use_spacer = 'none', - use_xft = true, -} - -conky.text = [[ -${font Fira Code:weight=Bold:size=35}${alignc}${color 2f2f2f}${time %H:%M.%S} -${font Fira Code:size=25}${alignc}${color 2f2f2f}${time %d %B, %Y} -${font Fira Code:size=20}${alignc}${color 2f2f2f}${time %A} -]] diff --git a/.config/conky/launch.sh b/.config/conky/launch.sh deleted file mode 100755 index a6c0020..0000000 --- a/.config/conky/launch.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -killall -q conky - -conky -q diff --git a/.config/neofetch/config.conf b/.config/neofetch/config.conf index 2e77c19..960711d 100644 --- a/.config/neofetch/config.conf +++ b/.config/neofetch/config.conf @@ -9,7 +9,7 @@ print_info() { info "Kernel" kernel # info "Uptime" uptime # info "Packages" packages - # info "Shell" shell + info "Shell" shell # info "Resolution" resolution info "DE" de info "WM" wm @@ -20,7 +20,7 @@ print_info() { # info "Terminal Font" term_font # info "CPU" cpu # info "GPU" gpu - # info "Memory" memory + info "Memory" memory # info "GPU Driver" gpu_driver # Linux/macOS only # info "CPU Usage" cpu_usage diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index f119a9a..681a0bd 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -36,7 +36,7 @@ set ignorecase set mouse=a set hlsearch set autoindent -set number +set nu rnu filetype plugin indent on syntax on diff --git a/.config/picom/launch b/.config/picom/launch index 86e5616..0a7c409 100755 --- a/.config/picom/launch +++ b/.config/picom/launch @@ -11,4 +11,4 @@ killall -q picom while pgrep -u $UID -x picom >/dev/null; do sleep 1; done # Launch picom -picom --config ~/.config/picom/picom.conf --experimental-backends & +picom --config ~/.config/picom/picom.conf --experimental-backends --xrender-sync-fence & diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf index e93a9e1..242fe90 100644 --- a/.config/picom/picom.conf +++ b/.config/picom/picom.conf @@ -80,11 +80,11 @@ fading = true; # Opacity change between steps while fading in. (0.01 - 1.0, defaults to 0.028) # fade-in-step = 0.028 -fade-in-step = 0.035; +fade-in-step = 0.04; # Opacity change between steps while fading out. (0.01 - 1.0, defaults to 0.03) # fade-out-step = 0.03 -fade-out-step = 0.035; +fade-out-step = 0.04; # The time between steps in fade step, in milliseconds. (> 0, defaults to 10) # fade-delta = 10 @@ -145,7 +145,7 @@ inactive-dim = 0.2 # Parameters for background blurring, see the *BLUR* section for more information. -blur-method = "dual_kawase"; +# blur-method = "dual_kawase"; blur-strength = 8; # blur-size = 2; # diff --git a/.config/polybar/config b/.config/polybar/config index dee8429..dd71f0d 100644 --- a/.config/polybar/config +++ b/.config/polybar/config @@ -4,7 +4,7 @@ [colors] background = #111015 foreground = #fefefe -foreground2 = #aafefefe +foreground2 = #77fefefe line = #bbb border = #bbb accent = #434d5e @@ -18,7 +18,6 @@ foreground-alt = ${xrdb:color7:#222} primary = ${xrdb:color4:#222} secondary = ${xrdb:color2:#222} alert = #2f2f2ffa -#${xrdb:color8:#222} special = ${xrdb:color12:#222} black = #32344a @@ -35,7 +34,7 @@ white = #787c99 # margin-bottom = 0 [bar/top] -font-0 = "Iosevka:pixelsize=10;1" +font-0 = "monospace:pixelsize=10;1" font-1 = "siji:pixelsize=12;1" font-2 = "Font Awesome 5 Free Regular:size=12;1" font-3 = "Font Awesome 5 Free Solid:size=12;1" @@ -49,7 +48,7 @@ monitor = ${env:MONITOR} width = 100% height = 20 -bottom = 1 +# bottom = 1 background = ${colors.background} foreground = ${colors.foreground} @@ -164,7 +163,7 @@ click-middle = cmus-remote --pause scroll-up = cmus-remote --volume +5% scroll-down = cmus-remote --volume -5% -label-font = 3 +label-font = 1 format =