Python指令碼秒換桌布
需求
win10桌布太醜,自己的桌布切換又麻煩,就寫個指令碼放桌面一鍵切換
功能
讀取桌布資料夾,隨機選取桌布,更換桌布
程式碼
需要先安裝ctypes
庫
pip install ctypes
import random
import ctypes
import time
import os
path = r"C:\Users\THINKPAD\Desktop\桌布合集" # 記得更換成自己的桌布資料夾
file = os.listdir(path); # 開啟桌布資料夾
filepath = path +"\\" + random.choice(file); # 隨機選取某張圖片,建立絕對地址
ctypes.windll.user32.SystemParametersInfoW(20, 0, filepath, 0) # 設定桌面桌布
其他
如果.py
檔案無法雙擊執行,則右鍵開啟方式,尋找安裝python
的位置,選擇python.exe
.py
雙擊執行時會有黑框一閃而過,可以將字尾改為.pyw
且開啟方式選python資料夾中的pythonnw.exe
相關文章
- 【Python秒殺指令碼】淘寶或京東等秒殺搶購Python指令碼
- 萬物皆可秒——淘寶秒殺Python指令碼,掃貨618,備戰雙11!Python指令碼
- python編寫圖片主色轉換指令碼Python指令碼
- MySQL批量轉換表名為小寫(Python指令碼)MySqlPython指令碼
- python 常用指令碼Python指令碼
- 19、python 指令碼Python指令碼
- win10 換桌布怎麼換_windows10如何更換桌面桌布Win10Windows
- Python秒轉換成時間(時分秒)Python
- 桌布軟體Irvue,換桌布如此簡單Vue
- 可自動切換 learnku 夜間 / 白天模式的 python 指令碼模式Python指令碼
- PYTHON測試指令碼Python指令碼
- win10 如何定時換桌布_win10怎麼定時換桌布Win10
- 怎麼停止python指令碼Python指令碼
- Python《wallpaper abyss桌布》Python
- 雙十一有很多一元秒殺的商品!網速不夠?Python指令碼來湊!Python指令碼
- 這個Python指令碼牛逼了,秒搶紅包就算了,還能無視撤回訊息Python指令碼
- 70 行 python 程式碼實現桌布批量下載Python
- Android開發之指令碼替換PackageNameAndroid指令碼Package
- vue 構建環境切換指令碼Vue指令碼
- Oracle ADG 自動切換指令碼分享Oracle指令碼
- Linux Crontab Shell指令碼實現秒級定時任務Linux指令碼
- Python——自動簽到指令碼Python指令碼
- python指令碼練習筆記Python指令碼筆記
- Python訊息轟炸指令碼Python指令碼
- Laravel 中執行 Python 指令碼LaravelPython指令碼
- python ansible如何執行指令碼?Python指令碼
- Python Plumbum 簡介:用 Python 來寫指令碼Python指令碼
- Redis大key掃描Python指令碼RedisPython指令碼
- 批量修改OC類名指令碼 -- python指令碼Python
- python指令碼簡化jar操作命令Python指令碼JAR
- Python-FTP漏洞掃描指令碼PythonFTP指令碼
- Centos7 啟動 python指令碼CentOSPython指令碼
- python - [11] 日常指令碼彙總Python指令碼
- 如何把 awk 指令碼移植到 Python指令碼Python
- Python指令碼檢測笑臉漏洞Python指令碼
- python指令碼批次建立資料表Python指令碼
- 如何呼叫python中的shell指令碼?Python指令碼
- python中怎樣執行指令碼Python指令碼