This commit is contained in:
Night Kaly 2023-12-29 23:35:55 +00:00
parent 236afeaa01
commit 093ee82628
3 changed files with 3 additions and 6 deletions

View file

@ -9,15 +9,13 @@ on-button-right=dismiss-all
on-touch=dismiss
# STYLE OPTIONS
font=jetbrains mono nerd font 12
font=Monaspice Kr Nerd Font 12
width=300
height=100
margin=10
padding=10
border-size=1
border-radius=10
icons=0
text-alignment=center
default-timeout=5000
ignore-timeout=0
max-visible=5

View file

@ -23,7 +23,7 @@ export FZF_DEFAULT_OPTS=" \
--color=fg:#cdd6f4,header:#f38ba8,info:#cba6f7,pointer:#f5e0dc \
--color=marker:#f5e0dc,fg+:#cdd6f4,prompt:#cba6f7,hl+:#f38ba8" # https://github.com/catppuccin/fzf
export BAT_THEME="Catppuccin-mocha" # https://github.com/catppuccin/bat
export BEMENU_OPTS='--fb "#1e1e2e" --ff "#cdd6f4" --nb "#1e1e2e" --nf "#cdd6f4" --tb "#1e1e2e" --hb "#1e1e2e" --tf "#f38ba8" --hf "#f9e2af" --nf "#cdd6f4" --af "#cdd6f4" --ab "#1e1e2e" -H 24 --cw 1 -i --fn "jetbrains mono nerd font" -p "Menu"'
export BEMENU_OPTS='--fb "#1e1e2e" --ff "#cdd6f4" --nb "#1e1e2e" --nf "#cdd6f4" --tb "#1e1e2e" --hb "#1e1e2e" --tf "#f38ba8" --hf "#f9e2af" --nf "#cdd6f4" --af "#cdd6f4" --ab "#1e1e2e" -H 24 --cw 1 -i --fn "Monaspice Kr Nerd Font" -p "Menu"'
export PASSWORD_STORE_DIR="$HOME/.nky/Me/pass"
export LC_ALL=en_US.UTF-8
@ -37,4 +37,3 @@ export WLR_NO_HARDWARE_CURSORS=1
#export __GLX__VENDOR__LIBRARY_NAME=mesa
#export MESA_LOADER_DRIVER_OVERRIDE=zink
export WLR_RENDERER=gles2

View file

@ -28,7 +28,7 @@ alias rmpkg="sudo pacman -Rcns"
alias rmpkg-conf="sudo pacman -Runs"
alias codingsize="ncdu ~/.nky/Coding --exclude .git --exclude image --exclude node_modules --exclude jnic.zip --exclude 'Machine Learning-A-Z-Codes-Datasets.zip'"
alias foldersize="sudo du -shc"
alias findfiles="grep --exclude-dir={.mozilla,.cache,share,dump,state,node_modules,build,.git,npm,autojump,cargo,gnupg} --exclude=.zcompdump --exclude=.git -rnwinRIH . -e"
alias findfiles="grep --exclude-dir={.mozilla,.cache,share,dump,state,node_modules,build,.git,npm,autojump,cargo,gnupg} --exclude=.zcompdump --exclude=.git --exclude=.zsh_history -rnwinRIH . -e"
alias files="find / -type f | fzf"
alias homefiles="find ~ -type d \( -path ~/.cargo -o -path ~/.local/share -o -path ~/.local/state/nvim -o -path ~/.mozilla -o -path ~/.npm -o -path ~/.autojump -o -path ~/.cache -o -path ~/dotfiles -o -path ~/.gnupg -o -path ~/.config/zsh/zsh-syntax-highlighting -o -path ~/.config/zsh/zsh-autosuggestions -o -path ~/.config/zsh/powerlevel10k \) -prune -o -type f -not -path '*/.git/*' -not -path '*/node_modules/*' -print | fzf"
alias gitfolders="find . -type d -name '.git' -not -path '*nvim*' -not -path '*tmux*'"