aboutsummaryrefslogtreecommitdiff
path: root/unix/utils/hex2rgb.sh
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2025-09-24 05:25:39 +0200
committersrdusr <trevorgray@srdusr.com>2025-09-24 05:25:39 +0200
commita1627ac743289e768b138f1a60753a62e0869cc4 (patch)
tree92ab373442943f621bb26b3b284bb1da90e2923a /unix/utils/hex2rgb.sh
parentfdb0eb921205c34fb6ff5728727a097767ffae5a (diff)
downloaddotfiles-a1627ac743289e768b138f1a60753a62e0869cc4.tar.gz
dotfiles-a1627ac743289e768b138f1a60753a62e0869cc4.zip
Update/Overhaul
Diffstat (limited to 'unix/utils/hex2rgb.sh')
-rwxr-xr-xunix/utils/hex2rgb.sh3
1 files changed, 0 insertions, 3 deletions
diff --git a/unix/utils/hex2rgb.sh b/unix/utils/hex2rgb.sh
deleted file mode 100755
index a8ccc38..0000000
--- a/unix/utils/hex2rgb.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/bash
-hex="${1}"
-printf "R: %d G: %d B: %d\n" 0x"${hex:0:2}" 0x"${hex:2:2}" 0x"${hex:4:2}"