Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add cosmic-files #169

Merged
merged 1 commit into from
Jan 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,7 @@
[submodule "cosmic-randr"]
path = cosmic-randr
url = https://github.com/pop-os/cosmic-randr.git
[submodule "cosmic-files"]
path = cosmic-files
url = https://github.com/pop-os/cosmic-files.git
branch = master_jammy
20 changes: 12 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,29 @@ Currently an incomplete **pre-alpha**. Testing instructions below for various di
* [cosmic-applets](https://github.com/pop-os/cosmic-applets)
* [cosmic-applibrary](https://github.com/pop-os/cosmic-applibrary)
* [cosmic-comp](https://github.com/pop-os/cosmic-comp)
* [cosmic-edit](https://github.com/pop-os/cosmic-edit)
* [cosmic-files](https://github.com/pop-os/cosmic-files)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I also sorted the list using the sort feature in my text editor

* [cosmic-launcher](https://github.com/pop-os/cosmic-launcher)
* [cosmic-notifications](https://github.com/pop-os/cosmic-notifications)
* [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)
* [cosmic-text](https://github.com/pop-os/cosmic-text)
* [cosmic-edit](https://github.com/pop-os/cosmic-edit)
* [cosmic-settings-daemon](https://github.com/pop-os/cosmic-settings-daemon)
* [cosmic-settings](https://github.com/pop-os/cosmic-settings)
* [cosmic-term](https://github.com/pop-os/cosmic-term)
* [cosmic-theme](https://github.com/pop-os/cosmic-theme)
* [cosmic-theme-editor](https://github.com/pop-os/cosmic-theme-editor)
* [cosmic-time](https://github.com/pop-os/cosmic-time)
* [cosmic-workspaces-epoch](https://github.com/pop-os/cosmic-workspaces-epoch)
* [libcosmic](https://github.com/pop-os/libcosmic)
* [xdg-desktop-portal-cosmic](https://github.com/pop-os/xdg-desktop-portal-cosmic)

### COSMIC libraries/crates
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I extracted out this list so that the primary list is more easily compared to the list of submodules (they should be the same)

The items in the libraries/crates list aren't expected to be submodules


* [cosmic-protocols](https://github.com/pop-os/cosmic-protocols)
* [cosmic-text](https://github.com/pop-os/cosmic-text)
* [cosmic-theme](https://github.com/pop-os/cosmic-theme)
* [cosmic-time](https://github.com/pop-os/cosmic-time)
* [libcosmic](https://github.com/pop-os/libcosmic)

## Setup on distributions without packaging of cosmic components

The COSMIC desktop environment requires a few dependencies:
Expand Down
1 change: 1 addition & 0 deletions cosmic-files
Submodule cosmic-files added at a43de1
3 changes: 3 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ build:
{{ just }} cosmic-bg/build-release
{{ make }} -C cosmic-comp all
{{ just }} cosmic-edit/build-release
{{ just }} cosmic-files/build-release
{{ just }} cosmic-greeter/build-release
{{ just }} cosmic-launcher/build-release
{{ just }} cosmic-notifications/build-release
Expand All @@ -30,6 +31,7 @@ sysext dir=`echo $(pwd)/cosmic-sysext` version=("nightly-" + `git rev-parse --sh
{{ just }} rootdir={{dir}} cosmic-bg/install
{{ make }} -C cosmic-comp install DESTDIR={{dir}}
{{ just }} rootdir={{dir}} cosmic-edit/install
{{ just }} rootdir={{dir}} cosmic-files/install
{{ just }} rootdir={{dir}} cosmic-greeter/install
{{ just }} rootdir={{dir}} cosmic-icons/install
{{ just }} rootdir={{dir}} cosmic-launcher/install
Expand Down Expand Up @@ -62,6 +64,7 @@ clean:
rm -rf cosmic-bg/target
rm -rf cosmic-comp/target
rm -rf cosmic-edit/target
{{ just }} cosmic-files/clean
rm -rf cosmic-greeter/target
rm -rf cosmic-launcher/target
rm -rf cosmic-panel/target
Expand Down
Loading