My build of the simple terminal from suckless.org.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

4 lat temu
12345678910111213141516
  1. #!/bin/sh
  2. set -e
  3. # Get rid of the old 'stterm' alternative.
  4. # Since version 0.8.1-1 the binary is called 'st'.
  5. update-alternatives --remove x-terminal-emulator /usr/bin/stterm
  6. # Install the new alternative.
  7. update-alternatives \
  8. --install /usr/bin/x-terminal-emulator x-terminal-emulator /usr/bin/st 15 \
  9. --slave /usr/share/man/man1/x-terminal-emulator.1.gz x-terminal-emulator.1.gz /usr/share/man/man1/st.1.gz
  10. #DEBHELPER#
  11. exit 0