-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.conf.yaml
More file actions
53 lines (44 loc) · 1.69 KB
/
install.conf.yaml
File metadata and controls
53 lines (44 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
- defaults:
link:
create: true
relink: true
force: true
- clean: ["~"]
- link:
# zsh
~/.zshrc: zsh/zshrc
~/.functions.zsh: zsh/functions.zsh
~/.aliases.zsh: zsh/aliases.zsh
~/.fzf.zsh: zsh/fzf.zsh
~/.1password.zsh: zsh/1password.zsh
# ghostty
~/.config/ghostty/config: ghostty/config
# git
~/.gitignore_global: git/gitignore_global
~/.gitconfig: git/gitconfig
# php
~/.composer/composer.json: composer/composer.json
~/.config/tmux/tmux.conf: tmux/tmux.conf
# vim
~/.config/nvim/:
glob: true
path: vim/*
~/.local/bin/fix-audio: raycast-extensions/bin/fix-audio
- create:
- ~/Code
- ~/Documents/Screenshots
- ~/.config/nvim/session
- ~/.config/nvim/undo
- shell:
- description: Hushing login
command: "[ -f ~/.hushlogin ] || touch ~/.hushlogin"
- description: Setting Screenshots location
command: defaults write com.apple.screencapture location ~/Documents/Screenshots
- description: Setting wallpaper
command: osascript -e "tell application \"System Events\" to tell every desktop to set picture to \"$HOME/.dotfiles/wallpaper/wallpaper.png\" as POSIX file" 2>&1
- description: Disabling Stage Manager
command: defaults write com.apple.WindowManager GloballyEnabled -bool false && defaults write com.apple.WindowManager AppWindowGroupingBehavior -bool false
- description: Disable animations when opening applications
command: defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false
- description: Disable animations when opening Quick Look windows
command: defaults write -g QLPanelAnimationDuration -float 0