This commit is contained in:
2026-04-11 12:57:24 +03:00
parent c028c626cf
commit 211f9daecb

12
apps.d/dotdrop.zsh Normal file
View File

@@ -0,0 +1,12 @@
# shellcheck shell=bash
# vim: ft=sh
! command -v dotdrop > /dev/null && return
export DOTDROP_REPO="${XDG_CONFIG_HOME}/dotdrop"
export DOTDROP_CONFIG="${DOTDROP_REPO}/config-user.yaml"
DOTDROP_PROFILE="$(hostname)"
export DOTDROP_PROFILE
alias dotgit="git -C ${DOTDROP_REPO}"
alias dotsync="dotgit pull && dotgit add -A && dotgit commit && dotgit push && dotdrop install"