-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from pop-os/update
- Loading branch information
Showing
9 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
Submodule cosmic-applets
updated
8 files
+18 −23 | cosmic-applet-network/src/app.rs | |
+17 −16 | cosmic-applet-network/src/network_manager/active_conns.rs | |
+17 −17 | cosmic-applet-network/src/network_manager/devices.rs | |
+125 −155 | cosmic-applet-network/src/network_manager/mod.rs | |
+17 −17 | cosmic-applet-network/src/network_manager/wireless_enabled.rs | |
+63 −27 | flake.lock | |
+12 −3 | flake.nix | |
+7 −0 | justfile |
Submodule cosmic-applibrary
updated
5 files
+63 −27 | flake.lock | |
+9 −7 | flake.nix | |
+7 −2 | src/app.rs | |
+0 −7 | src/config.rs | |
+1 −1 | src/main.rs |
Submodule cosmic-bg
updated
4 files
+34 −33 | Cargo.lock | |
+2 −1 | config/src/lib.rs | |
+63 −27 | flake.lock | |
+6 −12 | flake.nix |
Submodule cosmic-comp
updated
25 files
+210 −226 | Cargo.lock | |
+9 −4 | Cargo.toml | |
+3 −1 | config.ron | |
+1 −1 | rust-toolchain.toml | |
+9 −3 | src/backend/kms/mod.rs | |
+11 −13 | src/backend/render/mod.rs | |
+5 −3 | src/backend/winit.rs | |
+5 −3 | src/backend/x11.rs | |
+2 −10 | src/config/mod.rs | |
+0 −2 | src/config/types.rs | |
+55 −47 | src/input/mod.rs | |
+92 −14 | src/shell/element/mod.rs | |
+573 −168 | src/shell/element/stack.rs | |
+441 −0 | src/shell/element/stack/tab.rs | |
+158 −0 | src/shell/element/stack/tab_text.rs | |
+974 −0 | src/shell/element/stack/tabs.rs | |
+24 −1 | src/shell/element/surface.rs | |
+80 −249 | src/shell/element/window.rs | |
+2 −3 | src/shell/layout/floating/grabs/moving.rs | |
+5 −1 | src/shell/layout/floating/mod.rs | |
+268 −18 | src/shell/layout/tiling/mod.rs | |
+2 −1 | src/shell/workspace.rs | |
+72 −12 | src/utils/iced.rs | |
+38 −1 | src/wayland/handlers/decoration.rs | |
+12 −17 | src/wayland/handlers/screencopy.rs |
Submodule cosmic-panel
updated
7 files
+10 −8 | Cargo.lock | |
+0 −1 | Cargo.toml | |
+12 −3 | cosmic-panel-bin/src/config_watching.rs | |
+2 −2 | cosmic-panel-bin/src/main.rs | |
+8 −0 | cosmic-panel-bin/src/space/wrapper_space.rs | |
+63 −27 | flake.lock | |
+14 −3 | flake.nix |
Submodule cosmic-settings
updated
17 files
+2 −2 | .github/workflows/ci.yml | |
+2 −1 | .gitignore | |
+66 −64 | Cargo.lock | |
+10 −0 | Cargo.toml | |
+1 −4 | app/Cargo.toml | |
+70 −71 | app/src/app.rs | |
+1 −1 | app/src/main.rs | |
+114 −43 | app/src/pages/desktop/wallpaper/mod.rs | |
+33 −38 | app/src/pages/desktop/wallpaper/widgets.rs | |
+12 −1 | app/src/theme.rs | |
+3 −1 | app/src/widget/mod.rs | |
+214 −0 | flake.lock | |
+89 −0 | flake.nix | |
+72 −9 | i18n/it/cosmic_settings.ftl | |
+1 −1 | pages/desktop/Cargo.toml | |
+111 −31 | pages/desktop/src/wallpaper.rs | |
+1 −1 | rust-toolchain |