-
Notifications
You must be signed in to change notification settings - Fork 0
/
xsct_gui_ES.py
130 lines (103 loc) · 5.24 KB
/
xsct_gui_ES.py
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
import tkinter as tk
from tkinter import ttk
import subprocess
from PIL import Image, ImageTk
import os
import cairosvg
import io
class AboutWindow(tk.Toplevel):
# This is the Version 5
def __init__(self, parent):
super().__init__(parent)
self.title("Acerca de xsct_gui")
self.geometry("420x450")
self.resizable(False, False)
text = tk.Text(self, wrap=tk.WORD, padx=10, pady=10, relief=tk.FLAT)
text.pack(expand=True, fill=tk.BOTH)
text.tag_configure("bold", font=("TkDefaultFont", 10, "bold"))
text.tag_configure("italic", font=("TkDefaultFont", 10, "italic"))
text.insert(tk.END, "xsct_gui\n\n", "bold")
text.insert(tk.END, "Una ")
text.insert(tk.END, "GUI ", "italic")
text.insert(tk.END, "(Interfaz Gráfica de Usuario) para xsct, para reducir o aumentar la cantidad de luz azul que produce la pantalla.\n\n")
text.insert(tk.END, "Copyright 2024 Washington Indacochea Delgado.\n")
text.insert(tk.END, "[email protected]\n")
text.insert(tk.END, "Licencia: GNU GPL3. \n\n")
text.insert(tk.END, "Este programa permite ajustar fácilmente la temperatura de color y el brillo de su pantalla, ayudando a reducir la fatiga visual y mejorar su experiencia de uso del ordenador.\n\n")
text.insert(tk.END, "Para más información, visite: \n\n", "italic")
text.insert(tk.END, "xsct_gui una GUI para xsct\n")
text.insert(tk.END, "https://github.com/wachin/xsct_gui\n\n")
text.insert(tk.END, "Xsct (X11 set color temperature)\n")
text.insert(tk.END, "https://github.com/faf0/sct\n\n")
text.config(state=tk.DISABLED)
close_button = ttk.Button(self, text="Cerrar", command=self.destroy)
close_button.pack(pady=10)
def update_xsct():
# Obtener valores redondeados
temperature = int(temperature_var.get()) # Redondear a enteros
brightness = round(brightness_var.get(), 3) # Redondear a tres decimales
# Actualizar los valores mostrados en la interfaz
temperature_label.config(text=f"Temperature (K): {temperature}") # Mostrar solo enteros
brightness_label.config(text=f"Brightness: {brightness:.3f}") # Mostrar con tres decimales
# Ejecutar el comando con los valores para xsct
subprocess.run(["xsct", str(temperature), str(brightness)])
def show_about():
AboutWindow(root)
def create_gradient_image(width, height, start_color, end_color):
gradient = Image.new("RGB", (width, 1))
for x in range(width):
r = int(start_color[0] + (end_color[0] - start_color[0]) * x / width)
g = int(start_color[1] + (end_color[1] - start_color[1]) * x / width)
b = int(start_color[2] + (end_color[2] - start_color[2]) * x / width)
gradient.putpixel((x, 0), (r, g, b))
return gradient.resize((width, height), Image.NEAREST)
def svg_to_photoimage(path, size):
png_data = cairosvg.svg2png(url=path, output_width=size, output_height=size)
return ImageTk.PhotoImage(Image.open(io.BytesIO(png_data)))
# Create the main window
root = tk.Tk()
root.title("xsct GUI")
root.geometry("400x250")
# Set the window icon
icon_sizes = [16, 22, 24, 32, 48, 64]
icon_paths = [f"/usr/share/icons/Papirus/{size}x{size}/apps/python.svg" for size in icon_sizes]
icons = [svg_to_photoimage(path, size) for size, path in zip(icon_sizes, icon_paths) if os.path.exists(path)]
if icons:
root.iconphoto(True, *icons)
# Temperature selector
temperature_frame = ttk.Frame(root, padding="10")
temperature_frame.pack(fill="x")
ttk.Label(temperature_frame, text="2000 K").pack(side="left")
temperature_label = ttk.Label(temperature_frame, text="Temperature (K)")
temperature_label.pack()
# Create temperature gradient
temp_gradient = create_gradient_image(380, 20, (255, 137, 18), (254, 249, 255))
temp_gradient_img = ImageTk.PhotoImage(temp_gradient)
temp_gradient_label = ttk.Label(temperature_frame, image=temp_gradient_img)
temp_gradient_label.pack()
temperature_var = tk.IntVar(value=6500)
temperature_scale = ttk.Scale(temperature_frame, from_=2000, to=6500, variable=temperature_var, orient="horizontal", length=380, command=lambda _: update_xsct())
temperature_scale.pack()
temperature_value = ttk.Label(temperature_frame, textvariable=temperature_var)
temperature_value.pack()
# Brightness selector
brightness_frame = ttk.Frame(root, padding="10")
brightness_frame.pack(fill="x")
ttk.Label(brightness_frame, text="0.200").pack(side="left")
brightness_label = ttk.Label(brightness_frame, text="Brightness")
brightness_label.pack()
# Create brightness gradient
bright_gradient = create_gradient_image(380, 20, (51, 51, 51), (255, 255, 255))
bright_gradient_img = ImageTk.PhotoImage(bright_gradient)
bright_gradient_label = ttk.Label(brightness_frame, image=bright_gradient_img)
bright_gradient_label.pack()
brightness_var = tk.DoubleVar(value=1.000)
brightness_scale = ttk.Scale(brightness_frame, from_=0.200, to=1.000, variable=brightness_var, orient="horizontal", length=380, command=lambda _: update_xsct())
brightness_scale.pack()
brightness_value = ttk.Label(brightness_frame, textvariable=brightness_var)
brightness_value.pack()
# About button
about_button = ttk.Button(root, text="Acerca de...", command=show_about)
about_button.pack(pady=10)
# Start the GUI event loop
root.mainloop()