-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.pyw
134 lines (101 loc) · 6.32 KB
/
main.pyw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import os
import random
import ctypes
import keyboard
import pystray
from PIL import Image
import configparser
from tkinter import Tk, Entry, Label, Button, END, filedialog, LabelFrame
# Получаем путь к текущей директории
current_dir = os.path.dirname(os.path.abspath(__file__))
# Путь к папке с обоями
img_folder = f"{current_dir}\\Wallpapers"
# Читаем настройки из файла конфигурации
config = configparser.ConfigParser()
config.read(f'{current_dir}\\settings.ini')
# Получаем сочетание клавиш для смены обоев
hotkey = config.get('Settings', 'hotkey', fallback='ctrl+alt+w')
# Получаем путь к папке с обоями из конфигурации
wallpaper_folder = config.get('Settings', 'wallpaper_folder', fallback=img_folder)
def change_wallpaper():
# Получаем список файлов в папке с обоями
files = os.listdir(wallpaper_folder)
# Проверяем, что список файлов не пуст
if not files:
print("Папка с обоями пуста!")
return
# Выбираем случайный файл
random_file = random.choice(files)
# Полный путь к выбранному файлу
wallpaper_path = os.path.join(wallpaper_folder, random_file)
# Устанавливаем обои
ctypes.windll.user32.SystemParametersInfoW(20, 0, wallpaper_path, 0)
icon.notify("Wallpaper changed!")
def on_right_click(icon, item):
if item == exit_item:
icon.stop()
elif item == change_wallpaper_item:
change_wallpaper()
elif item == settings_item:
show_settings_window()
def show_settings_window():
root = Tk()
root.title("Настройки")
root.configure(bg=config.get('Theme', 'background_color'))
# Создаем фрейм для ввода горячей клавиши
hotkey_frame = LabelFrame(root, text="Горячая клавиша", bg=config.get('Theme', 'background_color'), fg=config.get('Theme', 'text_color'), highlightbackground=config.get('Theme', 'highlight_color'), highlightthickness=config.getint('Theme', 'highlight_thickness'))
hotkey_frame.pack(pady=10)
hotkey_label = Label(hotkey_frame, text="Горячая клавиша для смены обоев:", bg=config.get('Theme', 'background_color'), fg=config.get('Theme', 'text_color'))
hotkey_label.pack()
hotkey_entry = Entry(hotkey_frame, width=50, bg=config.get('Theme', 'background_color'), fg=config.get('Theme', 'text_color'), highlightbackground=config.get('Theme', 'highlight_color'), highlightthickness=config.getint('Theme', 'highlight_thickness'))
hotkey_entry.insert(0, hotkey)
hotkey_entry.pack()
# Создаем фрейм для ввода папки с обоями
folder_frame = LabelFrame(root, text="Папка с обоями", bg=config.get('Theme', 'background_color'), fg=config.get('Theme', 'text_color'), highlightbackground=config.get('Theme', 'highlight_color'), highlightthickness=config.getint('Theme', 'highlight_thickness'))
folder_frame.pack(pady=10)
folder_label = Label(folder_frame, text="Папка с обоями:", bg=config.get('Theme', 'background_color'), fg=config.get('Theme', 'text_color'))
folder_label.pack()
folder_entry = Entry(folder_frame, width=50, bg=config.get('Theme', 'background_color'), fg=config.get('Theme', 'text_color'), highlightbackground=config.get('Theme', 'highlight_color'), highlightthickness=config.getint('Theme', 'highlight_thickness'))
folder_entry.insert(0, wallpaper_folder)
folder_entry.pack()
def select_folder():
selected_folder = filedialog.askdirectory()
if selected_folder:
folder_entry.delete(0, END)
folder_entry.insert(0, selected_folder)
select_folder_button = Button(folder_frame, text="Выбрать папку", command=select_folder, bg=config.get('Theme', 'button_color'), fg=config.get('Theme', 'text_color'), activebackground=config.get('Theme', 'active_button_color'), activeforeground=config.get('Theme', 'text_color'))
select_folder_button.pack()
def save_settings():
new_hotkey = hotkey_entry.get()
new_wallpaper_folder = folder_entry.get()
config.set('Settings', 'hotkey', new_hotkey)
config.set('Settings', 'wallpaper_folder', new_wallpaper_folder)
with open(f'{current_dir}\\settings.ini', 'w') as configfile:
config.write(configfile)
hotkey_entry.delete(0, END)
hotkey_entry.insert(0, new_hotkey)
folder_entry.delete(0, END)
folder_entry.insert(0, new_wallpaper_folder)
keyboard.remove_hotkey(hotkey)
keyboard.add_hotkey(new_hotkey, change_wallpaper)
global wallpaper_folder
wallpaper_folder = new_wallpaper_folder
print(f"Горячая клавиша изменена на '{new_hotkey}'")
print(f"Папка с обоями изменена на '{new_wallpaper_folder}'")
save_button = Button(root, text="Сохранить", command=save_settings, bg=config.get('Theme', 'button_color'), fg=config.get('Theme', 'text_color'), activebackground=config.get('Theme', 'active_button_color'), activeforeground=config.get('Theme', 'text_color'))
save_button.pack(pady=10)
root.mainloop()
# Создаем иконку в трее
image = Image.open(os.path.join(current_dir, "icon.png"))
icon = pystray.Icon("Wallpaper Changer", image, "Wallpaper Changer")
icon.title = "Wallpaper Changer"
change_wallpaper_item = pystray.MenuItem("Сменить обои", change_wallpaper)
settings_item = pystray.MenuItem("Настройки", on_right_click)
exit_item = pystray.MenuItem("Выход", on_right_click)
menu_items = [change_wallpaper_item, settings_item, exit_item]
icon.menu = pystray.Menu(*menu_items)
# Определяем сочетание клавиш для смены обоев
keyboard.add_hotkey(hotkey, change_wallpaper)
print(f"Нажмите {hotkey} для смены обоев.")
# Запускаем иконку в трее
icon.run_detached()