0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Arch Linux + Hyprlandで壁紙を変えるPythonアプリ

Last updated at Posted at 2025-03-22

Arch Linux+Hyprland環境で壁紙を変えるアプリをPythonで作った。
無駄にアプリの背景設定。
image.png

素材はこちらからお借りしています。
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()

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?