XFCE_AND_HYPERLAND

This commit is contained in:
2026-06-23 23:58:58 -05:00
commit ac75153861
12652 changed files with 4568288 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# alias ls='ls --color=auto'
# alias grep='grep --color=auto'
# PS1='[\u@\h \W]\$ '
# opencode
export PATH=$HOME/.opencode/bin:$PATH
alias sudo='doas'
if [ -z "$FISH_AUTO_STARTED" ]; then
# Export a flag so that any Bash launched from fish knows not to
# reexec fish again.
export FISH_AUTO_STARTED=1
# Replace this Bash process with fish.
exec fish
fi
# ------------------------------------------------------------------
# Your normal Bash customisations can go after this point.
# They will be sourced only when you are really using Bash.
# ------------------------------------------------------------------
# Example: enable colour prompt
force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
PS1='\[\e[0;32m\]\u@\h \[\e[0;34m\]\w\[\e[0m\]\$ '
fi