diff --git a/COPYING b/COPYING index 26a2f5c..304bfd3 100644 --- a/COPYING +++ b/COPYING @@ -1,6 +1,6 @@ Discordian Public License (DPL) -All Rites Reversed (ĸ) 3188 Aoi Koizumi +All Rites Reversed (ĸ) 3189 Izuru Yakumo Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/Makefile b/Makefile index 34cfe20..336a158 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,12 @@ PREFIX=/usr/local build: - go build -v ./cmd/antifetch - mandoc -T man < ./man/antifetch.1.mdoc > antifetch.1 + go build -v ./cmd/mima + mandoc -T man < ./man/mima.1.mdoc > mima.1 clean: - rm antifetch antifetch.1 + rm mima mima.1 install: - install -Dm0755 antifetch ${PREFIX}/bin/antifetch - install -Dm0644 antifetch.1 ${PREFIX}/share/man/man1/antifetch.1 + install -Dm0755 mima ${PREFIX}/bin/mima + install -Dm0644 mima.1 ${PREFIX}/share/man/man1/mima.1 uninstall: - rm ${PREFIX}/bin/antifetch ${PREFIX}/share/man/man1/antifetch.1 + rm ${PREFIX}/bin/mima ${PREFIX}/share/man/man1/mima.1 diff --git a/README.md b/README.md index 339ce95..0b2b113 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# antifetch +# mima A silly reimplementation of `nofetch(1)` in Go. ```shell diff --git a/cmd/antifetch/main.go b/cmd/mima/main.go similarity index 87% rename from cmd/antifetch/main.go rename to cmd/mima/main.go index f695f5d..92ad4a4 100644 --- a/cmd/antifetch/main.go +++ b/cmd/mima/main.go @@ -1,7 +1,7 @@ -// $KyokoNet: antifetch, v 0.1.6 2022/11/15 08:54:00 akoizumi Exp $ +// $MirrorWorld: mima, v 0.1.6 2022/11/15 08:54:00 yakumo_izuru Exp $ // // Get current system information like neofetch(1) without fancy things. -// It mostly uses the standard library, and an extra dependency. +// It mostly uses the standard library, and two extra external dependencies. package main import ( diff --git a/go.mod b/go.mod index 82df673..de8edee 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module marisa.chaotic.ninja/antifetch +module marisa.chaotic.ninja/mima go 1.18 diff --git a/man/antifetch.1.mdoc b/man/mima.1.mdoc similarity index 100% rename from man/antifetch.1.mdoc rename to man/mima.1.mdoc