My build of the simple terminal from suckless.org.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

12 строки
161 B

  1. #!/bin/sh
  2. set -e
  3. if [ "$1" = remove ] || [ "$1" = deconfigure ]; then
  4. update-alternatives --remove x-terminal-emulator /usr/bin/st
  5. fi
  6. #DEBHELPER#
  7. exit 0