aboutsummaryrefslogtreecommitdiff
path: root/common/install.sh
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2025-09-24 06:44:45 +0200
committersrdusr <trevorgray@srdusr.com>2025-09-24 06:44:45 +0200
commitcf3dd258e0ab3a366960a5e4c8c08f13613f36da (patch)
tree90b62ea927075a9744d8b5b6d7053884901a9905 /common/install.sh
parent5e3107a9e3c4bdd87a6cdbd3d7277883e97e5c3d (diff)
downloaddotfiles-cf3dd258e0ab3a366960a5e4c8c08f13613f36da.tar.gz
dotfiles-cf3dd258e0ab3a366960a5e4c8c08f13613f36da.zip
config command now supports common/scripts
Diffstat (limited to 'common/install.sh')
-rwxr-xr-xcommon/install.sh107
1 files changed, 61 insertions, 46 deletions
diff --git a/common/install.sh b/common/install.sh
index 4a2b209..0fd7993 100755
--- a/common/install.sh
+++ b/common/install.sh
@@ -1277,7 +1277,7 @@ install_config_command() {
# Dotfiles Management System
if [[ -d "$HOME/.cfg" && -d "$HOME/.cfg/refs" ]]; then
- # Core git wrapper with repository as work-tree
+ # Core git wrapper - .cfg is bare repo, work-tree points to .cfg itself
_config() {
git --git-dir="$HOME/.cfg" --work-tree="$HOME/.cfg" "$@"
}
@@ -1326,7 +1326,9 @@ if [[ -d "$HOME/.cfg" && -d "$HOME/.cfg/refs" ]]; then
fi
case "$repo_path" in
- # Common configs → OS-specific config dirs
+ common/scripts/*)
+ echo "$HOME/.scripts/${repo_path#common/scripts/}"
+ ;;
common/config/*)
case "$CFG_OS" in
linux)
@@ -1337,6 +1339,7 @@ if [[ -d "$HOME/.cfg" && -d "$HOME/.cfg/refs" ]]; then
echo "$HOME/Library/Application Support/${repo_path#common/config/}"
;;
windows)
+ # Windows Bash (Git Bash, MSYS, WSL) respects LOCALAPPDATA
echo "$LOCALAPPDATA\\${repo_path#common/config/}"
;;
*)
@@ -1344,32 +1347,18 @@ if [[ -d "$HOME/.cfg" && -d "$HOME/.cfg/refs" ]]; then
;;
esac
;;
-
- # Common assets → stay in repo
- common/assets/*)
+ common/assets/*|profile/*|README.md)
echo "$HOME/.cfg/$repo_path"
;;
-
- # Other common files (dotfiles like .bashrc, .gitconfig, etc.) → $HOME
common/*)
- echo "$HOME/${repo_path#common/}"
+ echo "$HOME/.cfg/$repo_path"
;;
-
- # OS-specific home
*/home/*)
echo "$HOME/${repo_path#*/home/}"
;;
-
- # Profile configs and README → stay in repo
- profile/*|README.md)
+ *)
echo "$HOME/.cfg/$repo_path"
;;
-
- # Default fallback
- *)
- echo "$HOME/.cfg/$repo_path"
- ;;
-
esac
}
@@ -1415,7 +1404,29 @@ if [[ -d "$HOME/.cfg" && -d "$HOME/.cfg/refs" ]]; then
case "$cmd" in
add)
local file_path
- for file_path in "$@"; do
+ local git_opts=()
+ local files=()
+
+ # Parse arguments
+ while [[ $# -gt 0 ]]; do
+ case "$1" in
+ --target|-t)
+ target_dir="$2"
+ shift 2
+ ;;
+ -*) # Any other flags are git flags
+ git_opts+=("$1")
+ shift
+ ;;
+ *) # Anything else is a file
+ files+=("$1")
+ shift
+ ;;
+ esac
+ done
+
+ # Process each file
+ for file_path in "${files[@]}"; do
local repo_path
if [[ -n "$target_dir" ]]; then
local rel_path
@@ -1433,11 +1444,13 @@ if [[ -d "$HOME/.cfg" && -d "$HOME/.cfg/refs" ]]; then
mkdir -p "$(dirname "$full_repo_path")"
cp -a "$file_path" "$full_repo_path"
- git --git-dir="$HOME/.cfg" --work-tree="$HOME/.cfg" add "$repo_path"
+ # Only git flags + repo_path go to git
+ _config add "${git_opts[@]}" "$repo_path"
echo "Added: $file_path -> $repo_path"
done
;;
+
rm)
local rm_opts=""
local file_path_list=()
@@ -1463,11 +1476,13 @@ if [[ -d "$HOME/.cfg" && -d "$HOME/.cfg/refs" ]]; then
echo "Removed: $file_path"
done
;;
+
sync)
local direction="${1:-to-repo}"; shift
_config ls-files | while read -r repo_file; do
local sys_file="$(_sys_path "$repo_file")"
local full_repo_path="$HOME/.cfg/$repo_file"
+
if [[ "$direction" == "to-repo" ]]; then
if [[ -e "$sys_file" && -n "$(diff "$full_repo_path" "$sys_file" 2>/dev/null || echo "diff")" ]]; then
cp -a "$sys_file" "$full_repo_path"
@@ -1488,18 +1503,36 @@ if [[ -d "$HOME/.cfg" && -d "$HOME/.cfg/refs" ]]; then
fi
done
;;
+
status)
+ # Check for missing files and auto-sync existing ones
local auto_synced=()
+ local missing_files=()
+
while read -r repo_file; do
local sys_file="$(_sys_path "$repo_file")"
local full_repo_path="$HOME/.cfg/$repo_file"
- if [[ -e "$sys_file" && -e "$full_repo_path" ]]; then
+
+ if [[ ! -e "$full_repo_path" ]]; then
+ missing_files+=("$repo_file")
+ elif [[ -e "$sys_file" ]]; then
if ! diff -q "$full_repo_path" "$sys_file" >/dev/null 2>&1; then
cp -fa "$sys_file" "$full_repo_path"
auto_synced+=("$repo_file")
fi
fi
done < <(_config ls-files)
+
+ # Report missing files
+ if [[ ${#missing_files[@]} -gt 0 ]]; then
+ echo "=== Missing Files (consider removing from git) ==="
+ for repo_file in "${missing_files[@]}"; do
+ echo "missing: $repo_file"
+ done
+ echo
+ fi
+
+ # Report auto-synced files
if [[ ${#auto_synced[@]} -gt 0 ]]; then
echo "=== Auto-synced Files ==="
for repo_file in "${auto_synced[@]}"; do
@@ -1507,14 +1540,17 @@ if [[ -d "$HOME/.cfg" && -d "$HOME/.cfg/refs" ]]; then
done
echo
fi
+
_config status
- echo
;;
- deploy)
+
+ deploy|checkout)
+ echo "Deploying dotfiles from .cfg..."
_config ls-files | while read -r repo_file; do
local full_repo_path="$HOME/.cfg/$repo_file"
local sys_file="$(_sys_path "$repo_file")"
+ # Only continue if the source exists
if [[ -e "$full_repo_path" && -n "$sys_file" ]]; then
local dest_dir
dest_dir="$(dirname "$sys_file")"
@@ -1532,29 +1568,7 @@ if [[ -d "$HOME/.cfg" && -d "$HOME/.cfg/refs" ]]; then
fi
done
;;
- checkout)
- echo "Checking out dotfiles from .cfg..."
- _config ls-files | while read -r repo_file; do
- local full_repo_path="$HOME/.cfg/$repo_file"
- local sys_file="$(_sys_path "$repo_file")"
-
- if [[ -e "$full_repo_path" && -n "$sys_file" ]]; then
- local dest_dir
- dest_dir="$(dirname "$sys_file")"
- # Create destination if it doesn't exist
- if [[ "$sys_file" == /* && "$sys_file" != "$HOME/"* ]]; then
- _sudo_prompt mkdir -p "$dest_dir"
- _sudo_prompt cp -a "$full_repo_path" "$sys_file"
- else
- mkdir -p "$dest_dir"
- cp -a "$full_repo_path" "$sys_file"
- fi
-
- echo "Checked out: $repo_file -> $sys_file"
- fi
- done
- ;;
backup)
local timestamp=$(date +%Y%m%d%H%M%S)
local backup_dir="$HOME/.dotfiles_backup/$timestamp"
@@ -1570,6 +1584,7 @@ if [[ -d "$HOME/.cfg" && -d "$HOME/.cfg/refs" ]]; then
done
echo "Backup complete. To restore, copy files from $backup_dir to their original locations."
;;
+
*)
_config "$cmd" "$@"
;;