diff options
author | Mattias Andrée <maandree@kth.se> | 2024-02-06 07:46:58 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-02-06 07:46:58 +0100 |
commit | 8c30c456806ff6d40684a7acf4084f387932db0e (patch) | |
tree | f534b0560067677c9813e3214f38bbb49523d449 /make-dir-info | |
parent | Add some aliases and icons (diff) | |
download | simple-icon-theme-e7f00b9d6c7349f15708602677b4199806b7baee.tar.gz simple-icon-theme-e7f00b9d6c7349f15708602677b4199806b7baee.tar.bz2 simple-icon-theme-e7f00b9d6c7349f15708602677b4199806b7baee.tar.xz |
Big update11
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'make-dir-info')
-rwxr-xr-x | make-dir-info | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/make-dir-info b/make-dir-info deleted file mode 100755 index d43efe1..0000000 --- a/make-dir-info +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh - -if test "$2" = actions; then - context=Actions -elif test "$2" = animations; then - context=Animations -elif test "$2" = categories; then - context=Categories -elif test "$2" = devices; then - context=Devices -elif test "$2" = emblems; then - context=Emblems -elif test "$2" = emotes; then - context=Emotes -elif test "$2" = mimetypes; then - context=MimeTypes -elif test "$2" = places; then - context=Places -elif test "$2" = status; then - context=Status -fi - -if test "$1" = scalable; then - printf '[%s/%s]\n' "$1" "$2" - printf '%s\n' Context="$context" Size="16" MinSize="8" MaxSize="1024" Type="Scalable" -else - printf '[%sx%s/%s]\n' "$1" "$1" "$2" - printf '%s\n' Context="$context" Size="$1" Type="Fixed" -fi |