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.
This commit is contained in:
Sarthak 2026-09-14 16:12:09 +05:30
commit 7f41cf7a82
104 changed files with 8077 additions and 0 deletions

12
bin/rice-emoji Executable file
View file

@ -0,0 +1,12 @@
#!/usr/bin/env bash
# rice-emoji - emoji picker that types the emoji into the focused window.
theme="$HOME/.config/rofi/menu.rasi"
if [[ -f /usr/lib/rofi/emoji.so ]]; then
# The "Emoji" header comes from config.rasi (emoji { display-name }).
exec rofi -modi emoji -show emoji -emoji-mode insert \
-theme "$theme" -theme-str 'window { width: 640px; } listview { columns: 2; lines: 12; }'
elif command -v rofimoji >/dev/null; then
exec rofimoji --action type --selector-args="-theme $theme -p Emoji"
else
rice-notify send "Emoji" "Install rofi-emoji to use the picker"
fi