-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfreshrc
More file actions
72 lines (57 loc) · 2.04 KB
/
Copy pathfreshrc
File metadata and controls
72 lines (57 loc) · 2.04 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# freshshell.com
#
# Examples:
#
# fresh twe4ked/dotfiles shell/functions.sh
# fresh jasoncodes/dotfiles aliases/rails.sh
# fresh jasoncodes/dotfiles config/tmux.conf --file
#
# See http://freshshell.com/readme for documentation.
fresh freshshell/fresh bin/fresh --bin
fresh aliases/\*
fresh config/gitignore --file
fresh shell/\*
fresh shell/config/\*
fresh jasoncodes/dotfiles shell/config/asdf.sh
fresh jasoncodes/dotfiles config/asdfrc --file
fresh jasoncodes/dotfiles shell/aliases/rails.sh
fresh jasoncodes/dotfiles shell/aliases/ruby.sh
fresh jasoncodes/dotfiles shell/aliases/git.sh
fresh jasoncodes/dotfiles config/pryrc --file
fresh jasoncodes/dotfiles bin/toggl --bin
fresh-options --file=~/.gitconfig --marker=\#
fresh jasoncodes/dotfiles config/gitconfig
fresh-options
if [[ "$(uname)" == "Linux" ]]; then
fresh config/hypr --file=~/.config/hypr/
fresh config/niri --file=~/.config/niri/
fresh config/waybar --file=~/.config/waybar/
fresh config/bspwm --file=~/.config/bspwm/
fresh config/sxhkd/\* --file=~/.config/sxhkd/sxhkdrc --marker=\#
fresh config/paru/paru.conf --file=~/.config/paru/paru.conf
fresh config/gamemode.ini --file=~/.config/gamemode.ini
fi
fresh-options --file=~/.config/kitty/kitty.conf --marker=\#
fresh kitty/kitty.conf
fresh folke/tokyonight.nvim extras/kitty/tokyonight_night.conf
fresh-options
if [[ "$(uname)" == "Darwin" ]]; then
fresh config/aerospace.toml --file
fi
fresh config/ghostty --file=~/.config/ghostty/
fresh config/starship.toml --file=~/.config/starship.toml
fresh config/ideavimrc --file=~/.ideavimrc
fresh config/tuicr --file=~/.config/tuicr/
if command -v podman &> /dev/null; then
fresh jasoncodes/dotfiles bin/podman-machine-run --bin
fresh jasoncodes/dotfiles LaunchAgents/podman-machine.plist --file=~/Library/LaunchAgents/podman-machine.plist
fi
start_podman()
{
if [ -f ~/Library/LaunchAgents/podman-machine.plist ] && ! launchctl list podman-machine &> /dev/null; then
launchctl load ~/Library/LaunchAgents/podman-machine.plist
fi
}
fresh_after_build() {
start_podman
}