replace the old dotfiles with the sakura line rice

The bare $HOME repo is gone. This is now the rice: install.sh, rice-*
scripts in bin/, configs in home/ linked into $HOME, theme templates, st
and the particle wallpaper. Clone to ~/rice and run install.sh.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01BLLuuQfeDiqFHHSgd2VWrQ
This commit is contained in:
Sarthak 2026-09-14 16:12:09 +05:30
commit 4b203d06bd
104 changed files with 8077 additions and 0 deletions

16
home/.bash_profile Normal file
View file

@ -0,0 +1,16 @@
# ~/.bash_profile
[[ -f ~/.bashrc ]] && . ~/.bashrc
# Auto-start the graphical session, but ONLY in the exact situation where it is
# safe to do so. Any one of these guards failing leaves you at a normal shell.
# - not already inside X
# - not an SSH session (never hijack a remote login)
# - physically on VT 1
# - no Xorg already running for this user
# NOTE: deliberately NOT `exec startx`. If X dies or fails to start we fall back
# to an interactive shell on tty1 instead of a login loop.
if [[ -z "$DISPLAY" && -z "$SSH_CONNECTION" && "$XDG_VTNR" == "1" ]]; then
if ! pgrep -u "$USER" -x Xorg >/dev/null 2>&1; then
startx
fi
fi