Update 3 files
- /home/.chezmoiscripts/universal/run_onchange_after_70-misc-bug-fixes.tmpl - /home/.chezmoiremove - /software.yml
This commit is contained in:
parent
ab41f48e15
commit
b95b9a8cc6
3 changed files with 21 additions and 2 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
# https://github.com/deta/deta-cli/issues/100
|
||||||
.CFUserTextEncoding
|
.CFUserTextEncoding
|
||||||
.DS_Store/
|
.DS_Store/
|
||||||
.ansible/
|
.ansible/
|
||||||
|
@ -10,14 +11,17 @@ Brewfile
|
||||||
.fzf.bash
|
.fzf.bash
|
||||||
.fzf.zsh
|
.fzf.zsh
|
||||||
.dircolors
|
.dircolors
|
||||||
|
.gconf/
|
||||||
.gitconfig
|
.gitconfig
|
||||||
.gitignore
|
.gitignore
|
||||||
.gradle
|
.gradle
|
||||||
.inputrc
|
.inputrc
|
||||||
|
.java/
|
||||||
.krew
|
.krew
|
||||||
.lesshst
|
.lesshst
|
||||||
.m2
|
.m2
|
||||||
.npmrc
|
.npmrc
|
||||||
|
.parallels/
|
||||||
.pip
|
.pip
|
||||||
.pnpm-state/
|
.pnpm-state/
|
||||||
.profile
|
.profile
|
||||||
|
@ -30,6 +34,8 @@ Brewfile
|
||||||
.v8flags*
|
.v8flags*
|
||||||
.vagrant.d/
|
.vagrant.d/
|
||||||
.viminfo
|
.viminfo
|
||||||
|
.volta/
|
||||||
|
.vscode-oss/
|
||||||
.wgetrc
|
.wgetrc
|
||||||
.wget-hsts
|
.wget-hsts
|
||||||
.zlogin
|
.zlogin
|
||||||
|
|
|
@ -29,6 +29,19 @@ else
|
||||||
logg warn '`rsync` is missing from the system!'
|
logg warn '`rsync` is missing from the system!'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
### Move ~/.gnome/apps/* to ~/.local/share/applications
|
||||||
|
if [ -d "$HOME/gnome/apps" ]; then
|
||||||
|
if [ ! -d "${XDG_DATA_DIR:-$HOME/.local/share}/applications" ]; then
|
||||||
|
mkdir -p "${XDG_DATA_DIR:-$HOME/.local/share}/applications"
|
||||||
|
fi
|
||||||
|
find "$HOME/gnome/apps" -mindepth 1 -maxdepth 1 -type f | while read DESKTOP_FILE; do
|
||||||
|
logg info "Moving $DESKTOP_FILE to ${XDG_DATA_DIR:-$HOME/.local/share}/applications/$(basename "$DESKTOP_FILE")"
|
||||||
|
mv "$DESKTOP_FILE" "${XDG_DATA_DIR:-$HOME/.local/share}/applications/$(basename "$DESKTOP_FILE")"
|
||||||
|
done
|
||||||
|
logg info 'Removing ~/.gnome/apps'
|
||||||
|
rm -rf "$HOME/.gnome/apps"
|
||||||
|
fi
|
||||||
|
|
||||||
##### CANDY ICONS START ######
|
##### CANDY ICONS START ######
|
||||||
|
|
||||||
### Additional icons
|
### Additional icons
|
||||||
|
|
|
@ -6873,8 +6873,8 @@ softwarePackages:
|
||||||
# brew: vectordotdev/brew/vector
|
# brew: vectordotdev/brew/vector
|
||||||
helm: https://helm.vector.dev
|
helm: https://helm.vector.dev
|
||||||
pacman: vector
|
pacman: vector
|
||||||
script:darwin: curl --proto '=https' --tlsv1.2 -sSf https://sh.vector.dev | bash
|
script:darwin: curl --proto '=https' --tlsv1.2 -sSf https://sh.vector.dev | bash -s -- --prefix "${XDG_DATA_DIR:-$HOME/.local/share}/vector" --no-modify-path -y
|
||||||
script:linux: curl --proto '=https' --tlsv1.2 -sSf https://sh.vector.dev | bash
|
script:linux: curl --proto '=https' --tlsv1.2 -sSf https://sh.vector.dev | bash -s -- --prefix "${XDG_DATA_DIR:-$HOME/.local/share}/vector" --no-modify-path -y
|
||||||
velero:
|
velero:
|
||||||
_bin: velero
|
_bin: velero
|
||||||
_desc: null
|
_desc: null
|
||||||
|
|
Loading…
Reference in a new issue