This commit is contained in:
Henry Hiles 2025-08-12 17:22:44 -04:00
commit 63b065428b
No known key found for this signature in database
5 changed files with 12 additions and 12 deletions

2
.gitignore vendored
View file

@ -1,3 +1,3 @@
.direnv/
node_modules/
auto-rotate@henryhiles.com.zip
fullscreen-rotate@henryhiles.com.zip

View file

@ -14,7 +14,7 @@
system,
...
}: let
name = "auto-rotate";
name = "fullscreen-rotate";
uuid = "${name}@henryhiles.com";
extDir = "share/gnome-shell/extensions/${uuid}";
in {
@ -43,7 +43,7 @@
'';
meta = {
homepage = "https://git.federated.nexus/Henry-Hiles/auto-rotate";
homepage = "https://git.federated.nexus/Henry-Hiles/fullscreen-rotate";
description = "An extension to automatically rotate the screen when a window is fullscreened, useful for GNOME Shell Mobile.";
license = lib.licenses.gpl3Only;
maintainers = [lib.maintainers.quadradical];

View file

@ -1,8 +1,8 @@
{
"name": "Auto Rotate",
"description": "An extension to automatically rotate the screen when a window is fullscreened, useful for GNOME Shell Mobile.",
"uuid": "auto-rotate@henryhiles.com",
"url": "https://git.federated.nexus/Henry-Hiles/auto-rotate",
"settings-schema": "org.gnome.shell.extensions.auto-rotate",
"uuid": "fullscreen-rotate@henryhiles.com",
"url": "https://git.federated.nexus/Henry-Hiles/fullscreen-rotate",
"settings-schema": "org.gnome.shell.extensions.fullscreen-rotate",
"shell-version": ["48", "49"]
}

4
package-lock.json generated
View file

@ -1,11 +1,11 @@
{
"name": "auto-rotate",
"name": "fullscreen-rotate",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "auto-rotate",
"name": "fullscreen-rotate",
"version": "1.0.0",
"license": "GPL-3.0-only",
"dependencies": {

View file

@ -1,19 +1,19 @@
{
"name": "auto-rotate",
"name": "fullscreen-rotate",
"version": "1.0.0",
"description": "An extension to automatically rotate the screen when a window is fullscreened, useful for GNOME Shell Mobile.",
"type": "module",
"private": true,
"repository": {
"type": "git",
"url": "git+https://git.federated.nexus/Henry-Hiles/auto-rotate.git"
"url": "git+https://git.federated.nexus/Henry-Hiles/fullscreen-rotate.git"
},
"author": "Henry Hiles",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://git.federated.nexus/Henry-Hiles/auto-rotate/issues"
"url": "https://git.federated.nexus/Henry-Hiles/fullscreen-rotate/issues"
},
"homepage": "https://git.federated.nexus/Henry-Hiles/auto-rotate",
"homepage": "https://git.federated.nexus/Henry-Hiles/fullscreen-rotate",
"devDependencies": {
"eslint": "^9.33.0",
"eslint-plugin-jsdoc": "^52.0.4",