Skip to content

Instantly share code, notes, and snippets.

View Moraxyc's full-sized avatar
📖
I may be slow to respond.

Moraxyc Moraxyc

📖
I may be slow to respond.
View GitHub Profile
@Moraxyc
Moraxyc / pinching-five-fingers-niri-overview.py
Created June 2, 2025 05:49
Pinching with five fingers to activate Niri Overview
import json
import logging
import os
import signal
import socket
import sys
import time
from select import select
from evdev import InputDevice, ecodes, list_devices
@Moraxyc
Moraxyc / photo_add_time_EXIF.py
Created September 11, 2022 12:14
通过文件名为照片添加时间元数据的脚本(@Wendell 2021.04原创)
import os
import piexif
def checkFormat(photoPwd):
'''
检查文件类型是否为图片格式
'''
(root, ext) = os.path.splitext(photoPwd)
return str.upper(ext[1:]) # 返回文件后缀类型