fix(dunst): dont load on start
This commit is contained in:
parent
96be36e1f7
commit
1638d24687
5 changed files with 38 additions and 38 deletions
|
|
@ -78,7 +78,6 @@ input {
|
|||
repeat_rate = 50
|
||||
}
|
||||
|
||||
exec-once = dunst
|
||||
exec-once = wl-paste --watch cliphist store
|
||||
exec-once = [ -f "${XDG_PICTURES_DIR:-$HOME/Pictures}/Screensavers/wallpaper.jpg" ] || ctl wallpaper wall
|
||||
exec-once = [ -f "${XDG_PICTURES_DIR:-$HOME/Pictures}/Screensavers/lock.jpg" ] || ctl wallpaper lock
|
||||
|
|
|
|||
|
|
@ -45,11 +45,11 @@ export FZF_COMPLETION_TRIGGER=\;
|
|||
export FZF_TMUX=1
|
||||
|
||||
fzf-config-widget() {
|
||||
file="$(fd --type file --hidden . "$XDG_CONFIG_HOME"/nix | sed "s|$HOME|~|g" | fzf)"
|
||||
local file="$(FZF_CTRL_T_COMMAND="fd --type file --hidden . \"$XDG_CONFIG_HOME\"/nix | sed \"s|$HOME|~|g\"" __fzf_select)"
|
||||
[ -n "$file" ] || { zle reset-prompt; return; }
|
||||
file="${file/#\~/$HOME}"
|
||||
BUFFER="nvim $file"
|
||||
zle accept-line
|
||||
file="${file/#\\~/~}"
|
||||
LBUFFER+="$file"
|
||||
zle reset-prompt
|
||||
}
|
||||
zle -N fzf-config-widget
|
||||
bindkey '^E' fzf-config-widget
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue