Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 09cfd7d7c1 | |||
| 6c0ba4b0af | |||
| 86d70c0e93 | |||
| 57a264bbef | |||
| c547f33eb5 |
@@ -0,0 +1,3 @@
|
|||||||
|
[submodule "lolcat"]
|
||||||
|
path = lolcat
|
||||||
|
url = git@github.com:jaseg/lolcat.git
|
||||||
@@ -0,0 +1,85 @@
|
|||||||
|
#!/bin/python
|
||||||
|
|
||||||
|
from functools import cache
|
||||||
|
import os
|
||||||
|
import random
|
||||||
|
#import ueberzug.lib.v0 as ueberzug
|
||||||
|
import subprocess
|
||||||
|
import time
|
||||||
|
import fnmatch
|
||||||
|
from curses.textpad import Textbox, rectangle
|
||||||
|
|
||||||
|
modpath = os.path.dirname(__file__)
|
||||||
|
cachefile = "/tmp/waifu.cache"
|
||||||
|
resolution = 256
|
||||||
|
center = True
|
||||||
|
lolcat = False
|
||||||
|
unameArg = "-sr"
|
||||||
|
uptimeArg = "--pretty"
|
||||||
|
terminal = os.get_terminal_size()
|
||||||
|
minTermW = 200
|
||||||
|
#unameColor = "\033[1;38;5;93m"
|
||||||
|
#uptimeColor = "\033[1;38;5;99m"
|
||||||
|
|
||||||
|
#print len([name for name in os.listdir(f'{modpath}/waifus') if os.path.isfile(name)])
|
||||||
|
DIR=modpath + '/waifus'
|
||||||
|
#print(len([name for name in os.listdir(DIR) if os.path.isfile(os.path.join(DIR, name))]))
|
||||||
|
|
||||||
|
#filter waifus
|
||||||
|
waifulist = os.listdir(DIR)
|
||||||
|
waifus_raw = fnmatch.filter(waifulist, '*.256.png')
|
||||||
|
waifus = list(waifus_raw)
|
||||||
|
waifuindex = random.randint(1, len(waifus))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#print(modpath)
|
||||||
|
|
||||||
|
#######################
|
||||||
|
|
||||||
|
#If term Kitty
|
||||||
|
print(len(waifus))
|
||||||
|
|
||||||
|
if random.randint(0,1) == 0:
|
||||||
|
if os.path.getsize(cachefile) != 0:
|
||||||
|
f = open(cachefile, 'r')
|
||||||
|
waifuindex = f.read()
|
||||||
|
print(int(waifuindex))
|
||||||
|
#print(len(waifus))
|
||||||
|
#Else Add File
|
||||||
|
###############
|
||||||
|
if int(waifuindex) < len(waifus):
|
||||||
|
waifu = waifus[int(waifuindex)]
|
||||||
|
waifuindex = int(waifuindex) + 1
|
||||||
|
f = open(cachefile, 'w')
|
||||||
|
f.write(str(waifuindex))
|
||||||
|
else:
|
||||||
|
waifuindex = random.randint(1, len(waifus))
|
||||||
|
f = open(cachefile, 'w')
|
||||||
|
f.write(str(waifuindex))
|
||||||
|
waifu = waifus[int(waifuindex)]
|
||||||
|
else:
|
||||||
|
waifu = waifus[int(waifuindex)]
|
||||||
|
#######################
|
||||||
|
|
||||||
|
#Declare static methods
|
||||||
|
@staticmethod
|
||||||
|
def showImage():
|
||||||
|
subprocess.run(["/usr/bin/kitty", "icat", DIR+"/"+waifu])
|
||||||
|
|
||||||
|
def showUname(unameArg):
|
||||||
|
os.system("/usr/bin/uname " + unameArg)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def showUptime(uptimeArg):
|
||||||
|
os.system("/usr/bin/uptime " + uptimeArg)
|
||||||
|
|
||||||
|
#def doLolcat():
|
||||||
|
# if __name__ == '__main__':
|
||||||
|
# showUname(unameArg)
|
||||||
|
# showUptime(uptimeArg)
|
||||||
|
|
||||||
|
showImage()
|
||||||
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 46 KiB |
|
After Width: | Height: | Size: 5.1 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 45 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 101 KiB |
|
After Width: | Height: | Size: 9.7 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 108 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 118 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 52 KiB |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 68 KiB |
|
After Width: | Height: | Size: 6.8 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 52 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 68 KiB |
|
After Width: | Height: | Size: 7.3 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 131 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 50 KiB |
|
After Width: | Height: | Size: 5.4 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 85 KiB |
|
After Width: | Height: | Size: 7.4 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 61 KiB |
|
After Width: | Height: | Size: 6.3 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 64 KiB |
|
After Width: | Height: | Size: 6.3 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 59 KiB |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 50 KiB |
|
After Width: | Height: | Size: 156 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 59 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 50 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 144 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 62 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 109 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 50 KiB |
|
After Width: | Height: | Size: 5.1 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 61 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 4.7 KiB |
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 87 KiB |
|
After Width: | Height: | Size: 8.2 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 56 KiB |
|
After Width: | Height: | Size: 5.3 KiB |
|
After Width: | Height: | Size: 22 KiB |