commit e051e48c71b8c5837105aa9181bff280debb230f
parent 60322204a1cfaa8a7965862ae89c9951c1adf462
Author: gearsix <gearsix@tuta.io>
Date: Thu, 26 Jan 2023 12:47:19 +0000
removed uneeded colors/ files
Diffstat:
2 files changed, 0 insertions(+), 44 deletions(-)
diff --git a/colors/README b/colors/README
@@ -1,20 +0,0 @@
-
-# acme colors
-
-A repository with resource files to match the Sam/Acme colorscheme.
-
-Currently it just holds Sam/ACME colorscemes because I've become quite fond of
-it and it's quite an obscure colorscheme, see:
-
- - https://en.wikipedia.org/wiki/Sam_(text_editor)
- - https://en.wikipedia.org/wiki/Acme_(text_editor)
-
-*note:* There are minor variations in the yellow colors, different
-because some applications render colors differently.
-
-## install
-
-Just run ./install FILE, where FILE matches the text editor resource file you'd
-like to install. It'll be automatically moved to where it needs to be for the
-corresponding text editor to locate it.
-
diff --git a/colors/install.sh b/colors/install.sh
@@ -1,24 +0,0 @@
-#!/usr/bin/env sh
-
-for arg in "$@"; do
- file=$arg
- dir=""
-
- if [ "$file" = "acme.vim" ]; then
- dir=~/.config/nvim/colors
- elif [ "$file" = "acme.micro" ] || [ "$file" = "paper.micro" ]; then
- dir=~/.config/micro/colorschemes
- elif [ "$file" = "acme.Xresources" ]; then
- dir=~/.Xresources
- elif [ "$file" = "" ]; then
- echo "usage: ./install FILE"
- exit
- else
- echo "unrecognised file: $file"
- continue
- fi
-
- mkdir -pv $dir
- ln -vi "$file" $dir
-done
-