vietc/packaging/deb/DEBIAN/postrm
vndangkhoa 16a0d73a6e Viet+ v0.1.0 - Vietnamese Input Method for Linux
Features:
- Direct Input Engine (no pre-edit buffer, no underline)
- Telex + VNI input methods
- Auto-restore English words
- ESC undo (strip tones)
- Smart per-app memory
- Macro expansion (ko→không, dc→được, vs→với, lm→làm)
- Triple backend: uinput, X11 XTEST, Wayland IM
- Hot-reload config
- 148 tests passing

Packaging:
- .deb package
- AppImage support
- AUR PKGBUILD
- Flatpak manifest
- Systemd user service
2026-06-24 10:13:10 +07:00

11 lines
250 B
Bash

#!/bin/bash
set -e
# Remove vinput group if empty
if getent group vinput > /dev/null 2>&1; then
if ! getent group vinput | grep -q ':'; then
groupdel vinput 2>/dev/null || true
fi
fi
echo "Viet+ removed. Config kept at /etc/vietc/"