--[ modified: zshrc, musicplayer, etc]------------

- Removed st transparency from picom.conf
+ Fixed incorrect source path
This commit is contained in:
ziro 2020-07-27 13:50:00 +07:00
parent 03da4ff4c7
commit 9952e0166d
3 changed files with 2 additions and 5 deletions

View file

@ -42,7 +42,6 @@ opacity-rule = [ "99:name *?= 'Call'",
"90:class_g *?= 'conky'", "90:class_g *?= 'conky'",
"90:class_g *?= 'thunar'", "90:class_g *?= 'thunar'",
"100:class_g *?= 'Steam'", "100:class_g *?= 'Steam'",
"100:class_g *?= 'st' && !_NET_WM_STATE@:32a",
"90:class_g *?= 'atom'", "90:class_g *?= 'atom'",
"96:class_g *?= 'emacs'", "96:class_g *?= 'emacs'",
"100:class_g *?= 'polybar' && class_g *?= 'Polybar'", "100:class_g *?= 'polybar' && class_g *?= 'Polybar'",

View file

@ -49,7 +49,7 @@ ZSH_PLUGINS="$XDG_DATA_HOME/zsh/plugins"
# source $ZSH/oh-my-zsh.sh # source $ZSH/oh-my-zsh.sh
# emulate -R zsh -c 'source $ZSH_PLUGINS/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh' # emulate -R zsh -c 'source $ZSH_PLUGINS/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh'
source $ZSH_PLUGINS/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh 2>/dev/null source $ZSH_PLUGINS/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh 2>/dev/null
source $ZSH_PLUGINS/plugins/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh 2>/dev/null source $ZSH_PLUGINS/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh 2>/dev/null
#source $ZSH_CUSTOM/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 2>/dev/null #source $ZSH_CUSTOM/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 2>/dev/null
#source $ZSH_CUSTOM/plugins/fsh/fast-syntax-highlighting.plugin.zsh #source $ZSH_CUSTOM/plugins/fsh/fast-syntax-highlighting.plugin.zsh

View file

@ -14,7 +14,5 @@ case "$chosen" in
cmus) notify-send "Launching..." "cmus" && st -n cmus -e cmus ;; cmus) notify-send "Launching..." "cmus" && st -n cmus -e cmus ;;
Spotify) notify-send "Launching..." "Spotify" && env LD_PRELOAD=/usr/local/lib/spotify-adblock.so spotify ;; Spotify) notify-send "Launching..." "Spotify" && env LD_PRELOAD=/usr/local/lib/spotify-adblock.so spotify ;;
VLC) notify-send "Launching..." "VLC" && vlc ;; VLC) notify-send "Launching..." "VLC" && vlc ;;
ncmpcpp) notify-send "Launching..." "$chosen" && st -n ncmpcpp -e ncmpcpp ;; ncmpcpp) notify-send "Launching..." "$chosen" && st -e ncmpcpp ;;
esac esac