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
|
||||
.DS_Store/
|
||||
.ansible/
|
||||
|
@ -10,14 +11,17 @@ Brewfile
|
|||
.fzf.bash
|
||||
.fzf.zsh
|
||||
.dircolors
|
||||
.gconf/
|
||||
.gitconfig
|
||||
.gitignore
|
||||
.gradle
|
||||
.inputrc
|
||||
.java/
|
||||
.krew
|
||||
.lesshst
|
||||
.m2
|
||||
.npmrc
|
||||
.parallels/
|
||||
.pip
|
||||
.pnpm-state/
|
||||
.profile
|
||||
|
@ -30,6 +34,8 @@ Brewfile
|
|||
.v8flags*
|
||||
.vagrant.d/
|
||||
.viminfo
|
||||
.volta/
|
||||
.vscode-oss/
|
||||
.wgetrc
|
||||
.wget-hsts
|
||||
.zlogin
|
||||
|
|
|
@ -29,6 +29,19 @@ else
|
|||
logg warn '`rsync` is missing from the system!'
|
||||
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 ######
|
||||
|
||||
### Additional icons
|
||||
|
|
|
@ -6873,8 +6873,8 @@ softwarePackages:
|
|||
# brew: vectordotdev/brew/vector
|
||||
helm: https://helm.vector.dev
|
||||
pacman: vector
|
||||
script:darwin: curl --proto '=https' --tlsv1.2 -sSf https://sh.vector.dev | bash
|
||||
script:linux: 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 -s -- --prefix "${XDG_DATA_DIR:-$HOME/.local/share}/vector" --no-modify-path -y
|
||||
velero:
|
||||
_bin: velero
|
||||
_desc: null
|
||||
|
|
Loading…
Reference in a new issue