From 9c45f84e3cf5db8349a487f5ef3ca0c5277dc7aa Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Yaroslav=20de=20la=20Pe=C3=B1a=20Smirnov?=
 <yps@yaroslavps.com>
Date: Sun, 12 Dec 2021 15:21:53 +0300
Subject: Clean up configs

Remove unneeded junk.
---
 dotfiles/.config/vifm/scripts/imgt | 38 --------------------------------------
 1 file changed, 38 deletions(-)
 delete mode 100755 dotfiles/.config/vifm/scripts/imgt

(limited to 'dotfiles/.config/vifm/scripts/imgt')

diff --git a/dotfiles/.config/vifm/scripts/imgt b/dotfiles/.config/vifm/scripts/imgt
deleted file mode 100755
index 5d76d5d..0000000
--- a/dotfiles/.config/vifm/scripts/imgt
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-#
-# Based on script by z3bra -- 2014-01-21
-
-W3MIMGDISPLAY="/usr/lib/w3m/w3mimgdisplay"
-FONTH=16 # Size of one terminal row
-FONTW=9 # Size of one terminal column
-
-X=$1
-Y=$2
-COLUMNS=$3
-LINES=$4
-FILENAME=$5
-
-read width height <<< `echo "5;$FILENAME" | $W3MIMGDISPLAY`
-if [ -z "$width" -o -z "$height" ]; then
-    echo 'Error: Failed to obtain image size.'
-    exit 1
-fi
-
-x=$((FONTW * X))
-y=$((FONTH * Y))
-
-max_width=$((FONTW * COLUMNS))
-max_height=$((FONTH * LINES))
-
-if [ "$width" -gt "$max_width" ]; then
-    height=$((height * max_width / width))
-    width=$max_width
-fi
-if [ "$height" -gt "$max_height" ]; then
-    width=$((width * max_height / height))
-    height=$max_height
-fi
-
-w3m_command="0;1;$x;$y;$width;$height;;;;;$FILENAME\n4;\n3;"
-
-echo -e "$w3m_command" | $W3MIMGDISPLAY
-- 
cgit v1.2.3