Arch Linux+Hyprland環境で壁紙を変えるアプリをPythonで作った。
無駄にアプリの背景設定。
素材はこちらからお借りしています。
https://seiga.nicovideo.jp/seiga/im10929103
そもそものArch Linux + Hyprlandでの壁紙変更についてはnoteの方で書いてます。
https://note.com/sue93/n/n3cf2a31037df
ChangeWallPaper.py
#!/usr/bin/python
"""
機能:壁紙変更
"""
import tkinter as tk
import tkinter.filedialog
import subprocess
"""
main関数
"""
class ChangeWallPaper:
"""
初期化
"""
def __init__(self, root):
# ウィンドウ作成
self.root = root
self.root.title("WallPaperChanger")
self.root.geometry("400x200") # ウィンドウのサイズ
self.root.configure(bg = "white") # ウィンドウ背景色
# 画像の取得
# 好きな画像を設定する
# 画像サイズが大きすぎると表示されないので注意
# selfをつけやんとうまくいかんかった
self.img = tk.PhotoImage(file="/home/shu/picture/himari/normal_s.png")
# 画像ウィジェットの配置
# この上にラベルを表示するので最初に表示しておく。レイヤー的な感じ。
self.label1 = tk.Label(root, image=self.img)
self.label1.configure(bg = "white")
self.label1.place(x = 0, y = 0)
# ラベル
# オブジェクト名がボタンなのは、最初にボタンで作成した残骸
self.playbutton1 = tk.Label(root, text = "画像選択")
self.playbutton1.configure(bg = "white", foreground = "#000000", font=("",14))
self.playbutton1.bind("<Button-1>", self.on_button_click1)
self.playbutton1.place(x = 10, y = 10)
"""
ラベルクリック時の動作
"""
def on_button_click1(self, e):
# ファイル拡張子はpng,jpg限定
# フォルダダイアログ表示時の初期フォルダは、ユーザのホームフォルダ
file_name = tkinter.filedialog.askopenfilename(filetypes=[("Image file", ".png"),("Image file", ".jpg")], initialdir="~/")
# キャンセルボタン対策
# 画像が選択されたら変更する
if file_name:
subprocess.run(["hyprctl", "hyprpaper", "preload", file_name])
subprocess.run(["hyprctl", "hyprpaper", "wallpaper", "," + file_name])
"""
main関数呼び出し
"""
if __name__ == "__main__":
root = tk.Tk()
app = ChangeWallPaper(root)
root.mainloop()