From 4edc8417a40b3c394e12149de8643f869ef4dd1e Mon Sep 17 00:00:00 2001 From: Michael Aaron Murphy Date: Fri, 22 Dec 2023 15:49:11 +0100 Subject: [PATCH] feat: add cosmic-randr To be used as a dependency for cosmic-settings --- .gitmodules | 3 +++ README.md | 1 + cosmic-randr | 1 + justfile | 3 +++ 4 files changed, 8 insertions(+) create mode 160000 cosmic-randr diff --git a/.gitmodules b/.gitmodules index ac32361..b6bef34 100644 --- a/.gitmodules +++ b/.gitmodules @@ -71,3 +71,6 @@ path = cosmic-term url = https://github.com/pop-os/cosmic-term.git branch = master_jammy +[submodule "cosmic-randr"] + path = cosmic-randr + url = https://github.com/pop-os/cosmic-randr.git diff --git a/README.md b/README.md index c7833e3..99d2c3c 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ Currently an incomplete **pre-alpha**. Testing instructions below for various di * [cosmic-osd](https://github.com/pop-os/cosmic-osd) * [cosmic-panel](https://github.com/pop-os/cosmic-panel) * [cosmic-protocols](https://github.com/pop-os/cosmic-protocols) +* [cosmic-randr](https://github.com/pop-os/cosmic-randr) * [cosmic-settings](https://github.com/pop-os/cosmic-settings) * [cosmic-settings-daemon](https://github.com/pop-os/cosmic-settings-daemon) * [cosmic-session](https://github.com/pop-os/cosmic-session) diff --git a/cosmic-randr b/cosmic-randr new file mode 160000 index 0000000..5964a2e --- /dev/null +++ b/cosmic-randr @@ -0,0 +1 @@ +Subproject commit 5964a2e6a458ec297c1af7a074c011af617b22c8 diff --git a/justfile b/justfile index 8279f62..2322562 100644 --- a/justfile +++ b/justfile @@ -14,6 +14,7 @@ build: {{ just }} cosmic-notifications/build-release {{ make }} -C cosmic-osd all {{ just }} cosmic-panel/build-release + {{ just }} cosmic-randr/build-release {{ just }} cosmic-screenshot/build-release {{ just }} cosmic-settings/build-release {{ make }} -C cosmic-settings-daemon all @@ -35,6 +36,7 @@ sysext dir=`echo $(pwd)/cosmic-sysext` version=("nightly-" + `git rev-parse --sh {{ just }} rootdir={{dir}} cosmic-notifications/install {{ make }} -C cosmic-osd install DESTDIR={{dir}} prefix=/usr {{ just }} rootdir={{dir}} cosmic-panel/install + {{ just }} rootdir={{dir}} cosmic-randr/install {{ just }} rootdir={{dir}} cosmic-screenshot/install {{ just }} rootdir={{dir}} cosmic-settings/install {{ make }} -C cosmic-settings-daemon install DESTDIR={{dir}} prefix=/usr @@ -65,6 +67,7 @@ clean: rm -rf cosmic-panel/target rm -rf cosmic-notifications/target rm -rf cosmic-osd/target + rm -rf cosmic-randr/target rm -rf cosmic-screenshot/target rm -rf cosmic-settings/target rm -rf cosmic-settings-daemon/target