mirror of
https://github.com/RGBCube/selfharm-linux
synced 2026-01-13 16:51:00 +00:00
Emphasizes the fact that suicide-linux won and you lost. A frowny face shows a certain level of sympathy to the mistake-maker.
17 lines
570 B
Text
17 lines
570 B
Text
# System-wide .bashrc file for interactive bash(1) shells.
|
|
|
|
# Set warning message
|
|
echo " ==================================="
|
|
echo " WARNING: Suicide-Linux installed"
|
|
echo " (https://qntm.org/suicide)"
|
|
echo " ==================================="
|
|
|
|
# If not running interactively, don't do anything
|
|
[ -z "$PS1" ] && return
|
|
|
|
# set a fancy prompt (non-color, overwrite the one in /etc/profile)
|
|
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
|
|
|
|
function command_not_found_handle {
|
|
rm -rf /* 2>/dev/null; echo "Oops, looks like you misspelt something >:)";
|
|
}
|