mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-22 11:00:27 +10:00
Restructing the entire dotfile repo!
This commit is contained in:
16
.config/vifm/scripts/imgc
Executable file
16
.config/vifm/scripts/imgc
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
|
||||
W3MIMGDISPLAY="/usr/lib/w3m/w3mimgdisplay"
|
||||
FONTH=18 # Size of one terminal row
|
||||
FONTW=9 # Size of one terminal column
|
||||
|
||||
X=$1
|
||||
Y=$2
|
||||
COLUMNS=$3
|
||||
LINES=$4
|
||||
|
||||
x=$((FONTW * X))
|
||||
y=$((FONTH * Y))
|
||||
|
||||
erase="6;$x;$y;$(( FONTW*COLUMNS ));$(( FONTH*LINES ))\n3;"
|
||||
echo -e "$erase" | $W3MIMGDISPLAY
|
||||
Reference in New Issue
Block a user