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

11
bin/rice-clipboard Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env bash
# rice-clipboard - clipboard history (greenclip). Picking an entry puts it back on
# the clipboard, ready for super + v. rofi runs in dmenu mode so the header reads
# "Clipboard": custom rofi modes ignore a custom title and show their mode name.
pgrep -u "$UID" -x greenclip >/dev/null || setsid -f greenclip daemon >/dev/null 2>&1
choice=$(greenclip print | sed '/^$/d' |
rofi -dmenu -i -no-custom -p "Clipboard" -theme "$HOME/.config/rofi/menu.rasi" \
-theme-str 'window { width: 640px; }') || exit 0
[[ -n $choice ]] && greenclip print "$choice"