From deb64b051e3ea0c6b2ff4a3bb103598721c886ec Mon Sep 17 00:00:00 2001 From: CramMK Date: Sat, 4 Jul 2020 12:22:15 +0200 Subject: [PATCH] Changes for f32 --- config.yaml | 6 ------ dotfiles/alacritty/alacritty.yml | 2 +- dotfiles/bash/bashrc | 24 ------------------------ dotfiles/compton/compton.conf | 18 +++++++++--------- dotfiles/scripts/startup-laptop | 2 +- dotfiles/zsh/zshrc | 1 - 6 files changed, 11 insertions(+), 42 deletions(-) delete mode 100755 dotfiles/bash/bashrc diff --git a/config.yaml b/config.yaml index a33f8f7..a97056b 100644 --- a/config.yaml +++ b/config.yaml @@ -9,9 +9,6 @@ config: create: true dotpath: dotfiles dotfiles: - f_bashrc: - src: bash/bashrc - dst: ~/.bashrc f_zshrc: src: zsh/zshrc dst: ~/.zshrc @@ -115,9 +112,6 @@ profiles: - tmux # Packages to be used above - bash: - dotfiles: - - f_bashrc zsh: dotfiles: - f_zshrc diff --git a/dotfiles/alacritty/alacritty.yml b/dotfiles/alacritty/alacritty.yml index f0ad216..ada4dd7 100644 --- a/dotfiles/alacritty/alacritty.yml +++ b/dotfiles/alacritty/alacritty.yml @@ -279,7 +279,7 @@ visual_bell: # # 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: 0.9 +background_opacity: 0.95 selection: #semantic_escape_chars: ",│`|:\"' ()[]{}<>\t" diff --git a/dotfiles/bash/bashrc b/dotfiles/bash/bashrc deleted file mode 100755 index 5186689..0000000 --- a/dotfiles/bash/bashrc +++ /dev/null @@ -1,24 +0,0 @@ -# Set vim as default -export VISUAL=vim -export EDITOR="$VISUAL" - -# Dotdrop -alias dotdrop="~/dotfiles/dotdrop.sh --cfg=~/dotfiles/config.yaml" - -# PS1 -HOST="\[\033[0;93m\]\h\[\033[m\]" -GIT="\[\033[1;91m\](\$(git_branch))\[\033[m\]" -ICON="\[\033[1;92m\]➜\[\033[m\]" -DIR="\[\033[1;94m\]\w\[\033[m\]" -export PS1="[${HOST}] ${ICON} ${DIR} " - -# Quality of Life -alias ..="cd .." -alias ll="ls -l" -alias la="ls -la" -alias rm="rm -i" - -# Source global definitions -if [ -f /etc/bashrc ]; then - . /etc/bashrc -fi diff --git a/dotfiles/compton/compton.conf b/dotfiles/compton/compton.conf index ed96e2e..7eae5f6 100644 --- a/dotfiles/compton/compton.conf +++ b/dotfiles/compton/compton.conf @@ -1,14 +1,14 @@ # Opacity opacity-rule = [ - "90:class_g = 'XTerm'", - "90:class_g *?= 'Rofi'", + "95:class_g = 'XTerm'", + "95:class_g *?= 'Rofi'", ]; # Blur -blur-background = true; -blur-method = "kawase"; -blur-strength = 10; - -# Other -vsync = true; -backend = "glx"; +#blur-background = true; +#blur-method = "kawase"; +#blur-strength = 10; +# +## Other +#vsync = true; +#backend = "glx"; diff --git a/dotfiles/scripts/startup-laptop b/dotfiles/scripts/startup-laptop index 8291d26..6672f54 100755 --- a/dotfiles/scripts/startup-laptop +++ b/dotfiles/scripts/startup-laptop @@ -10,4 +10,4 @@ feh --bg-scale $HOME/wallpaper/wallpaper.png nm-applet & dunst & -compton & +picom & diff --git a/dotfiles/zsh/zshrc b/dotfiles/zsh/zshrc index e785e9b..b5066a5 100644 --- a/dotfiles/zsh/zshrc +++ b/dotfiles/zsh/zshrc @@ -54,7 +54,6 @@ if [ -f ~/.zshrc_local ]; then fi ## Keybinds -bindkey -s "^e" "ranger\n" ## Completion unsetopt menu_complete # do not autoselect the first completion entry