mirror of
https://github.com/morgan9e/gnome-cursor-overlay
synced 2026-04-14 00:14:12 +09:00
16 lines
405 B
Makefile
16 lines
405 B
Makefile
UUID = cursor-overlay@local
|
|
EXT_DIR = $(HOME)/.local/share/gnome-shell/extensions/$(UUID)
|
|
SRC_FILES = extension.js xcursor.js prefs.js metadata.json
|
|
|
|
install: uninstall
|
|
mkdir -p $(EXT_DIR)/schemas
|
|
cp $(SRC_FILES) $(EXT_DIR)/
|
|
cp schemas/*.xml $(EXT_DIR)/schemas/
|
|
glib-compile-schemas $(EXT_DIR)/schemas/
|
|
|
|
uninstall:
|
|
rm -rf $(EXT_DIR)
|
|
|
|
test: install
|
|
dbus-run-session -- gnome-shell --devkit --wayland
|