-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaliases.sh
executable file
·71 lines (67 loc) · 2.58 KB
/
aliases.sh
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
#!/bin/bash
# Function to check if a line exists in .bashrc
line_exists() {
grep -Fxq "$1" ~/.bashrc
}
# Define lines to be added
lines_to_add=(
'alias ls="eza --icons --git"'
'alias cat="bat"'
'alias cw="cargo watch -c -q -w src/ -x \"run\" -i \"src/templates\" -i \"src/public\" "'
'alias ct="cargo watch -c -q -w tests/ -x \"test -q quick_dev -- --nocapture\""'
'alias clippy="cargo clippy -- -W clippy::pedantic -W clippy::nursery -W clippy::unwrap_used"'
'alias brc="nvim ~/.bashrc"'
'alias sb="source ~/.bashrc"'
'alias la="eza -l --icons --git -a"'
'alias tree="eza --tree --icons"'
'alias thunderstorm="mpv --loop ~/Music/thunderstorm.flac"'
'alias ehyp="nvim ~/.config/hypr/hyprland.conf"'
'alias envim="nvim ~/.config/nvim"'
'alias obs="nvim ~/documents/notes/$(date +\"%m-%d-%Y\").md"'
'alias ein="nvim ~/scripts/install.sh"'
'alias in="sh ~/scripts/install.sh"'
'alias pushconf="sh ~/scripts/push_config.sh"'
'alias roci="ssh [email protected]"'
'export SSH_AUTH_SOCK=~/.1password/agent.sock'
'alias logout="pkill -KILL -u $USER"'
'alias rsync="rsync --exclude-from=/home/eran/.config/rsync_exclude.txt"'
'alias ptree="tree -I \"target|node_modules|dist\" | wl-copy"'
'alias cd="z"'
'eval "$(starship init bash)"'
'source ~/scripts/zoxide.sh'
'alias mirrors="sudo reflector --verbose --latest 10 --sort rate --save /etc/pacman.d/mirrorlist"'
'alias crs="cargo run-script"'
'alias chromium="chromium --ozone-platform=wayland"'
'export RUSTC_WRAPPER=sccache'
'export EDITOR="nvim"'
'# If not running interactively, don'"'"'t do anything'
'[[ $- != *i* ]] && return'
'eval "$(fzf --bash)"'
'alias grep="grep --color=auto"'
'PS1="[\u@\h \W]\$ "'
'alias nicevim="sudo renice -n -20 -p $(pgrep nvim)"'
'# pnpm'
'export PNPM_HOME="/home/eran/.local/share/pnpm"'
'case ":$PATH:" in'
' *":$PNPM_HOME:"*) ;;'
' *) export PATH="$PNPM_HOME:$PATH" ;;'
'esac'
'# pnpm end'
'# Created by `pipx` on 2024-04-20 13:14:11'
'export PATH="$PATH:/home/eran/.local/bin"'
'alias nano="nvim"'
'alias myevin="cd ~/code/myev && sudo ./target/release/myev-installer"'
'alias wayb="waybar & disown"'
)
# Loop through lines and add to .bashrc if they don't exist
for line in "${lines_to_add[@]}"; do
if ! line_exists "$line"; then
echo "$line" >> ~/.bashrc
echo "Added: $line"
else
echo "Skipped (already exists): $line"
fi
done
# Source .bashrc to reflect changes
source ~/.bashrc
echo ".bashrc updated and sourced."