Skip to content

Commit eb43424

Browse files
Add saving used wallpapers, add cleanup param for removing duplicates
1 parent 35d5ac4 commit eb43424

File tree

4 files changed

+52
-6
lines changed

4 files changed

+52
-6
lines changed

Readme.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
# Reddit Wallpaper Script for Linux
22

3-
Tested on Ubuntu 20.04 LTS
3+
Tested on Ubuntu 22.04 LTS
44

55
## Dependencies
66

77
- [Superpaper](https://github.com/hhannine/superpaper)
88
- [Requests](https://requests.readthedocs.io/en/master/)
9+
- [DifPy](https://github.com/elisemercury/Duplicate-Image-Finder)
10+
11+
## Usage
12+
13+
Just call the bash script (or the python script directly). If you want to cleanup, you can do so by adding cleanup to the call as a parameter.
14+
This will run DifPy and deletes duplicates from the archive folder.
915

1016
## Config
1117

config.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[CONFIG]
2-
subreddit = pics
2+
subreddit = F1Porn
33
foldername = wp_script
4-
monitors = 1
4+
monitors = 2

wallpaper

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
PID=$(pgrep mate-session)
22
export DBUS_SESSION_BUS_ADDRESS=$(grep -z DBUS_SESSION_BUS_ADDRESS /proc/$PID/environ|cut -d= -f2-)
3-
$HOME/bin/wallpaper.py >/tmp/wallpaper.log 2>&1
3+
$HOME/bin/wallpaper.py $1

wallpaper.py

+42-2
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,63 @@
11
#!/usr/bin/env python3
22

3-
import requests, random, shutil, subprocess
3+
import requests, random, shutil, subprocess, time, sys
4+
from difPy import dif
45
from configparser import ConfigParser
5-
from os.path import expanduser, dirname, realpath
6+
from os.path import expanduser, dirname, realpath, getctime, splitext, exists
7+
from os import rename
68
from pathlib import Path
79

810
# Get configfile
911
directory=dirname(realpath(__file__))
1012
config_object = ConfigParser()
1113
config_object.read(directory +"/config.ini")
1214
config = config_object["CONFIG"]
15+
data = sys.argv[1]
1316

1417
# Get the data link of the subreddit
1518
link='https://www.reddit.com/r/'+ config['subreddit'] +'/.json'
1619

1720
# Get the Path to save the pictures we will download, if it's not
1821
# there, it will be made
1922
path= expanduser("~") + '/Pictures/' + config['foldername'] + '/'
23+
archivepath= expanduser("~") + '/Pictures/' + config['foldername'] + '/archive/'
2024
Path(path).mkdir(parents=True, exist_ok=True)
25+
Path(archivepath).mkdir(parents=True, exist_ok=True)
26+
27+
if (data == 'cleanup'):
28+
search = dif(archivepath, delete=True)
29+
30+
# Save wallpapers
31+
for i in range(0,int(config['monitors'])):
32+
# Getting the path of the file
33+
f_path = path + 'pic_' + str(i)
34+
35+
if not exists(f_path):
36+
continue
37+
# Obtaining the creation time (in seconds)
38+
# of the file/folder (datatype=int)
39+
timestamp = getctime(f_path)
40+
41+
# Converting the time to an epoch string
42+
# (the output timestamp string would
43+
# be recognizable by strptime() without
44+
# format quantifers)
45+
t_str = time.ctime(timestamp)
46+
47+
# Converting the string to a time object
48+
t_obj = time.strptime(t_str)
49+
50+
# Transforming the time object to a timestamp
51+
# of ISO 8601 format
52+
form_t = time.strftime("%Y-%m-%d %H:%M:%S", t_obj)
53+
54+
# Since colon is an invalid character for a
55+
# Windows file name Replacing colon with a
56+
# similar looking symbol found in unicode
57+
# Modified Letter Colon " " (U+A789)
58+
form_t = form_t.replace(":", "꞉")
59+
# Renaming the filename to its timestamp
60+
rename(f_path, archivepath + '/' + 'pic_' + str(i) + '_' + form_t + splitext(f_path)[1])
2161

2262
# Make the actual request to get the data
2363
r = requests.get(link, headers = {'User-agent': 'wallpaperscript 0.1'})

0 commit comments

Comments
 (0)