My build of the simple terminal from suckless.org.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

12 lines
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