diff options
| author | Mattias Andrée <maandree@kth.se> | 2023-11-18 23:23:40 +0100 | 
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2023-11-18 23:23:40 +0100 | 
| commit | 0f1df0db903ba576fd17b08197d3066af7a61e5f (patch) | |
| tree | a59c04307b1382257afa3c3512ec3abadf7e0e47 /pony.computer | |
| parent | Use losetup -d instead of --detach and add clean up (diff) | |
| download | dotfiles-0f1df0db903ba576fd17b08197d3066af7a61e5f.tar.gz dotfiles-0f1df0db903ba576fd17b08197d3066af7a61e5f.tar.bz2 dotfiles-0f1df0db903ba576fd17b08197d3066af7a61e5f.tar.xz | |
A lot of changes
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'pony.computer')
| -rw-r--r-- | pony.computer/Makefile | 7 | ||||
| -rw-r--r-- | pony.computer/bash-aliases | 2 | 
2 files changed, 4 insertions, 5 deletions
| diff --git a/pony.computer/Makefile b/pony.computer/Makefile index f1bb603..088a16f 100644 --- a/pony.computer/Makefile +++ b/pony.computer/Makefile @@ -1,13 +1,12 @@  .POSIX: -include ../common.mk  install:  	mkdir -p -- ~/.config/bash/aliases.d -	test ! -d ~/.config/bash/aliases.d/pony.computer +	test ! -e ~/.config/bash/aliases.d/pony.computer || \ +		test -L ~/.config/bash/aliases.d/pony.computer  	ln -sf -- ~/.dotfiles/pony.computer/bash-aliases ~/.config/bash/aliases.d/pony.computer  uninstall: +	+! ../check-installed pony.computer  	-unlink -- ~/.config/bash/aliases.d/pony.computer  	-rmdir -- ~/.config/bash/aliases.d - -.PHONY: install uninstall diff --git a/pony.computer/bash-aliases b/pony.computer/bash-aliases index 4a9326d..1a98008 100644 --- a/pony.computer/bash-aliases +++ b/pony.computer/bash-aliases @@ -2,7 +2,7 @@  #DESCRIPTION: Utilise KMS support in ponysay when in a TTY and running pony.computer -if "$TERM" = "linux"; then +if test "$TERM" = "linux"; then  	pony.computer () {  		PONYSAY_KMS_PALETTE="$PALETTE" /usr/bin/pony.computer "$@"  		printf "$PALETTE" | 
