mirror of
https://github.com/Horhik/dotfiles.git
synced 2025-03-11 08:53:49 +00:00
6 lines
181 B
Python
Executable file
6 lines
181 B
Python
Executable file
#!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)
|