From c86ab2f8695dd41b722e00ca36c5ded1f7626a21 Mon Sep 17 00:00:00 2001 From: Shubham Saini Date: Thu, 28 May 2020 22:41:21 +0530 Subject: updated zsh --- alacritty/.config/alacritty/alacritty.yml | 44 ++++++++++++++++++------------- bin/.local/bin/shut | 2 +- picom/.config/picom.conf | 4 +-- spectrwm/.config/spectrwm/spectrwm.conf | 6 ++--- x/.xinitrc | 2 +- 5 files changed, 33 insertions(+), 25 deletions(-) diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml index 85e940b..38cc4c6 100644 --- a/alacritty/.config/alacritty/alacritty.yml +++ b/alacritty/.config/alacritty/alacritty.yml @@ -1,30 +1,30 @@ colors: # Default colors primary: - background: "#000000" - foreground: "#D8DEE9" + background: '0x000000' + foreground: '0xc0c5ce' # Normal colors normal: - black: "#3B4252" - red: "#BF616A" - green: "#A3BE8C" - yellow: "#EBCB8B" - blue: "#81A1C1" - magenta: "#B48EAD" - cyan: "#88C0D0" - white: "#abb2bf" + black: '0x2b303b' + red: '0xbf616a' + green: '0xa3be8c' + yellow: '0xebcb8b' + blue: '0x8fa1b3' + magenta: '0xb48ead' + cyan: '0x96b5b4' + white: '0xc0c5ce' # Bright colors bright: - black: "#5c6370" - red: "#e06c75" - green: "#98c379" - yellow: "#d19a66" - blue: "#61afef" - magenta: "#c678dd" - cyan: "#56b6c2" - white: "#ECEFF4" + black: '0x65737e' + red: '0xbf616a' + green: '0xa3be8c' + yellow: '0xebcb8b' + blue: '0x8fa1b3' + magenta: '0xb48ead' + cyan: '0x96b5b4' + white: '0xeff1f5' background_opacity: 1.0 @@ -46,6 +46,8 @@ font: size: 9.0 antialias: true autohint: true + lcdfiler: lcddefault + rgba: rgb offset: x: 0 @@ -59,6 +61,12 @@ window: x: 8 y: 8 +cursor: + # - ▇ Block + # - _ Underline + # - | Beam + style: Underline + scrolling: # Maximum number of lines in the scrollback buffer. # Specifying '0' will disable scrolling. diff --git a/bin/.local/bin/shut b/bin/.local/bin/shut index 2ed1951..53fdf03 100755 --- a/bin/.local/bin/shut +++ b/bin/.local/bin/shut @@ -1,6 +1,6 @@ #!/bin/bash -RET=$(echo -e "shutdown\nreboot\nsleep\nlock\ncancel" | dmenu -l 5 -p "Sayonara" -nb "#000000" -nf "#bfbfbf" -sb "#84a0c6" -sf "#000000" -fn "ASM\-Bold:style=☞:size=10") +RET=$(echo -e "shutdown\nreboot\nsleep\nlock\ncancel" | dmenu -l 5 -p "Sayonara" -nb "#000000" -nf "#bfbfbf" -sb "#84a0c6" -sf "#000000" -fn "ASM\-Regular:style=☞:size=10:antialias=true:autohint=true") case $RET in shutdown) sudo poweroff ;; diff --git a/picom/.config/picom.conf b/picom/.config/picom.conf index bc22261..858d87e 100644 --- a/picom/.config/picom.conf +++ b/picom/.config/picom.conf @@ -37,8 +37,8 @@ blur-background-exclude = [ ]; opacity-rule = [ "40:class_g = 'Bspwm' && class_i = 'presel_feedback'", - "100:class_g = 'alacritty' && focused", - "95:class_g = 'alacritty' && !focused" + "100:class_g = 'Alacritty' && focused", + "95:class_g = 'Alacritty' && !focused" ]; ## FADING diff --git a/spectrwm/.config/spectrwm/spectrwm.conf b/spectrwm/.config/spectrwm/spectrwm.conf index 8cc43e5..79252db 100644 --- a/spectrwm/.config/spectrwm/spectrwm.conf +++ b/spectrwm/.config/spectrwm/spectrwm.conf @@ -38,7 +38,7 @@ bar_color[1] = black bar_color_selected[1] = rgb:00/80/80 bar_font_color[1] = rgb:b5/b5/b5, rgb:73/73/73 bar_font_color_selected = black -bar_font = ASM\-Bold:style=☞:size=9.5 +bar_font = ASM\-Bold:style=☞:size=9.5:antialias=true:autohint=true bar_action = ~/.config/spectrwm/statusbar bar_action_expand = 1 bar_justify = left @@ -129,8 +129,8 @@ bind[pprev] = XF86AudioPrev bind[pplay] = XF86AudioPlay # Optional default programs that will only be validated if you override: -program[screenshot_all] = screenshot full # optional -program[screenshot_wind] = screenshot window # optional +program[screenshot_all] = ~/.local/bin/screenshot full # optional +program[screenshot_wind] = ~/.local/bin/screenshot window # optional # program[initscr] = initscreen.sh # optional # EXAMPLE: Define 'firefox' action and bind to key. diff --git a/x/.xinitrc b/x/.xinitrc index a169b02..af968d5 100644 --- a/x/.xinitrc +++ b/x/.xinitrc @@ -7,4 +7,4 @@ xset s 600 & # picom 2>/dev/null & # dwmbar & -exec dbus-launch --exit-with-session spectrwm 2>/dev/null +exec dbus-launch --exit-with-session spectrwm -- cgit v1.2.3