-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.bashrc
More file actions
23 lines (19 loc) · 832 Bytes
/
.bashrc
File metadata and controls
23 lines (19 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- == *i* ]] && source /usr/share/blesh/ble.sh --noattach
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias warpon='warp-cli connect'
alias warpoff='warp-cli disconnect && systemctl restart systemd-resolved'
alias clear-cache='mv ~/.cache/spotify* ~ && mv ~/.cache/cliphist ~ && mv ~/.cache/blesh ~ && sudo rm -rf /var/cache/* ~/.cache/* && mv ~/spotify* ~/cliphist ~/blesh ~/.cache'
alias remove-unused='sudo pacman -Qdtq | sudo pacman -Rns -'
PS1='[\u@\h \W]\$ '
eval "$(starship init bash)"
[[ ${BLE_VERSION-} ]] && ble-attach
# Created by `pipx` on 2025-05-05 06:34:31
if [ -d "/home/sunny/.local/bin" ] && [[ ":$PATH:" != *":/home/sunny/.local/bin:"* ]]; then
PATH="${PATH:+"$PATH:"}/home/sunny/.local/bin"
fi