Skip to content

Commit 874bcbd

Browse files
committed
moved common link folders
1 parent 13f1b3d commit 874bcbd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+9
-109
lines changed

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
backup/
22
*.bak
3-
private/link/*
3+
private/*
44
temp/
5-
work/
5+
work/
6+
.DS_Store

arch/link/konsole/.DS_Store

-6 KB
Binary file not shown.

arch/link/konsole/.local/.DS_Store

-6 KB
Binary file not shown.
-6 KB
Binary file not shown.

arch/link/konsole/.local/share/konsole/Monokai Soda with P10K.profile

-7
This file was deleted.

arch/link/konsole/.local/share/konsole/monokai-soda.colorscheme

-96
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

common/link/git/.gitconfig renamed to git/.gitconfig

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[user]
22
33
name = Ryan Chhong
4-
signingkey = 58A27788BE13AF1F
4+
signingkey = /Users/ryanchhong/.ssh/id_rsa.pub
55
[alias]
66
tree = log --all --decorate --oneline --graph
77
# Space saver
@@ -31,3 +31,5 @@
3131
helper = osxkeychain
3232
[commit]
3333
gpgsign = true
34+
[gpg]
35+
format = ssh
File renamed without changes.
File renamed without changes.
File renamed without changes.

osx/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/p
4141

4242
# TODO: increase the granlarity level
4343
print_stage "INSTALLING CONFIG FILES"
44-
$DOTFILES/scripts/link.sh common private osx
44+
$DOTFILES/scripts/link.sh kitty raycast skhd yabai
4545

scripts/link.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ do
3232
print_info "Installing $to_install"
3333

3434
# Avoid conflicts
35-
CONFLICTS=$(stow --simulate --no-folding --verbose -t ~ -d $link_dir "$to_install" 2>&1 | awk '/\* existing target is/ {print $NF}')
35+
CONFLICTS=$(stow --simulate --no-folding --verbose "$to_install" 2>&1 | awk '/\* existing target is/ {print $NF}')
3636
for filename in ${CONFLICTS[@]}; do
3737
if [[ -f $HOME/$filename || -L $HOME/$filename ]]; then
3838
if [[ FORCE -eq 1 ]];
@@ -48,7 +48,7 @@ do
4848
if [[ $FORCE -eq 1 ]]; then RESTOW='--restow'; else RESTOW=''; fi
4949
if [[ $DRY_RUN -eq 1 ]]; then DR='--simulate'; else DR=''; fi
5050
# Create symlinks
51-
stow $RESTOW $DR --no-folding --verbose -t ~ -d $link_dir "$to_install"
51+
stow $RESTOW $DR --no-folding --verbose "$to_install"
5252
done
5353
done
5454

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)