This commit is contained in:
GasparVardanyan 2025-02-14 22:17:13 +04:00
parent 6a39e56b95
commit 2061a7702a
4 changed files with 20 additions and 12 deletions

View file

@ -56,6 +56,11 @@ ln -sfv ~/.config/qutebrowser ~/.local/share/scratchqbg/config
mkdir -pv ~/.local/share/scratchqbw
ln -sfv ~/.config/qutebrowser ~/.local/share/scratchqbw/config
rm -fv /desktop/utilsbin
ln -sfv $PWD/utilsbin/.local/bin /desktop/utilsbin
rm -fv ~/.local/share/themes
ln -sfv /desktop/themes ~/.local/share
rm -fv ~/.local/share/wallpapers
ln -sfv /desktop/wallpapers ~/.local/share
popd

View file

@ -48,6 +48,7 @@ feeds() {
feed "Luke Smith - Odysee" "https://odysee.com/$/rss/@Luke/70"
feed "Luke Smith - Peertube" "https://videos.lukesmith.xyz/feeds/videos.xml?sort=-publishedAt"
feed "Bread on Penguins - Invidious" "https://y.com.sb/feed/channel/UCwHwDuNd9lCdA7chyyquDXw"
feed "Brodie Robertson - Invidious" "https://y.com.sb/feed/channel/UCld68syR8Wi-GY_n4CaoJGA"
feed "Brodie Robertson - Odysee" "https://odysee.com/$/rss/@BrodieRobertson/5"
feed "Chris Titus Tech" "https://christitus.com/index.xml"

View file

@ -1,6 +1,7 @@
#!/usr/bin/env bash
layouts=( 'us' 'am(phonetic-alt)' 'keym' )
# layouts=( 'us' 'am(phonetic-alt)' 'keym' )
layouts=( 'us' 'am(phonetic-alt)' )
mkdir -p ~/.local/tmp

View file

@ -21,8 +21,6 @@ colors
zle -N edit-command-line
bindkey '^e' edit-command-line
[ -f ~/.zshp ] && source ~/.zshp
[ -f ~/.local/share/themes/theme.fzf ] && source ~/.local/share/themes/theme.fzf
@ -157,16 +155,16 @@ fpath=(~/.zsh.d/ $fpath)
if [[ -x $(which dircolors) ]]; then
if [[ -f ~/.local/etc/dir_colors ]]; then
eval $(dircolors -b ~/.local/etc/dir_colors)
elif [[ -f /etc/dir_colors ]]; then
eval $(dircolors -b /etc/dir_colors)
else
eval $(dircolors -b)
fi
if [[ -f ~/.local/etc/dir_colors ]]; then
eval $(dircolors -b ~/.local/etc/dir_colors)
elif [[ -f /etc/dir_colors ]]; then
eval $(dircolors -b /etc/dir_colors)
else
eval $(dircolors -b)
fi
else
LS_COLORS='no=00:fi=00:di=00;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.ogg=01;35:*.mp3=01;35:*.wav=01;35:';
export LS_COLORS
LS_COLORS='no=00:fi=00:di=00;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.ogg=01;35:*.mp3=01;35:*.wav=01;35:';
export LS_COLORS
fi
export ZLS_COLORS=$LS_COLORS
@ -176,6 +174,7 @@ zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
alias L="lazygit"
# alias grep="rg --engine=pcre2"
# alias sed="perl -pe"
# alias grep="grep -E"
@ -332,3 +331,5 @@ compdef _mpv mt
chpwd
# echo "$(cat ~/.local/etc/banner)"
[ -f ~/.zshp ] && source ~/.zshp