mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-01 06:27:18 +00:00
7 lines
181 B
Python
7 lines
181 B
Python
|
#!python
|
||
|
import subprocess
|
||
|
import os, random
|
||
|
a = random.choice(os.listdir("/home/horhik/Pictures/Lain")) #change dir name to whatever
|
||
|
path = "~/Pictures/Lain/" + str(a)
|
||
|
print(path)
|