ico-sxiv

View the individual entries of an ICO file in sxiv ⏺️

NameSizeMode
..
ico-sxiv 507B -rwxr-xr-x
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
#!/bin/sh
#  _                          _       
# (_) ___ ___        _____  _(_)_   __
# | |/ __/ _ \ _____/ __\ \/ / \ \ / /
# | | (_| (_) |_____\__ \>  <| |\ V / 
# |_|\___\___/      |___/_/\_\_| \_/  
#                                     
# View the individual entries of an ICO file in `sxiv`
# 
# Copyright (C) 2021 Pablo
# Free use of this software is granted under the terms of the GPL-3.0 License

TMP_DIR="$(mktemp -d)"
convert "$1" "$TMP_DIR/icon.png" && sxiv "$TMP_DIR"/*.png
rm "$TMP_DIR" -rf