From fd4b5793169d546ac29ced246ad137dc14d29b3b Mon Sep 17 00:00:00 2001 From: CramMK Date: Tue, 16 Jun 2020 09:47:51 +0200 Subject: [PATCH] Some smaller changes --- README.md | 3 ++- dotfiles/compton/compton.conf | 2 +- dotfiles/polybar/config | 2 +- dotfiles/zsh/zshrc | 3 ++- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0d05233..0e348cb 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,8 @@ My personal configurations, managed with the 'dotdrop' submodule. [Nord-themed.](https://www.nordtheme.com/) [Wallpaper.](https://www.reddit.com/r/swordartonline/comments/amj88q/aincrad_kirito_asuna_wallpaper/) ![home](https://i.imgur.com/DvgRFZH.png) -![busy](https://i.imgur.com/T1bRQb5.png) +![vim](https://i.imgur.com/wa1XaaI.png) +![other](https://i.imgur.com/LmRGyHj.png) ## Features + Distro: `Fedora 31` diff --git a/dotfiles/compton/compton.conf b/dotfiles/compton/compton.conf index 13047bb..93809d5 100644 --- a/dotfiles/compton/compton.conf +++ b/dotfiles/compton/compton.conf @@ -2,7 +2,7 @@ opacity-rule = [ "85:class_g = 'XTerm'", "95:class_g = 'discord'", - "90:class_g *?= 'spotify'", + "95:class_g *?= 'spotify'", "90:class_g *?= 'Rofi'", ]; diff --git a/dotfiles/polybar/config b/dotfiles/polybar/config index e00eadb..c5f2ccd 100644 --- a/dotfiles/polybar/config +++ b/dotfiles/polybar/config @@ -78,7 +78,7 @@ wm-restack = i3 [bar/external] inherit = bar/laptop -tray-position = right +tray-position = monitor = ${env:MONITOR:} diff --git a/dotfiles/zsh/zshrc b/dotfiles/zsh/zshrc index a230cfd..a881d78 100644 --- a/dotfiles/zsh/zshrc +++ b/dotfiles/zsh/zshrc @@ -4,7 +4,7 @@ autoload -U colors && colors precmd_vcs_info() { vcs_info } precmd_functions+=( precmd_vcs_info ) setopt prompt_subst -export PROMPT="%{$fg[yellow]%}%m %{$fg_bold[green]%}➜ %{$fg_bold[blue]%}%~ %{$fg_bold[red]%}\$vcs_info_msg_0_ %{$reset_color%}" +export PROMPT="%{$fg[yellow]%}%m %{$fg_bold[green]%}➜ %{$fg_bold[blue]%}%~ %{$fg_bold[green]%}\$vcs_info_msg_0_ %{$reset_color%}" zstyle ':vcs_info:git:*' formats '%b' ## Exports @@ -36,6 +36,7 @@ alias mv='mv -i' # Ask before removal alias gaa="git add ." alias gst="git status" +alias gd="git diff" alias gc="git commit -v" alias gc!="git commit -v --amend" alias gl="git pull"