generated from cosmic-utils/cosmic-app-template
-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: flatpak support * remove flatpak commands for justfile * fix justfile * rename to CosmicTweaks * update metainfo file to pass appstreamcli validate * Update dev.edfloreshz.CosmicTweaks.json * use git instead of path * update desktop entry * Update desktop_entry.desktop * Update res/metainfo.xml Co-authored-by: Eduardo Flores <[email protected]> * Update res/metainfo.xml Co-authored-by: Eduardo Flores <[email protected]> * Update res/metainfo.xml Co-authored-by: Eduardo Flores <[email protected]> * Update res/metainfo.xml Co-authored-by: Eduardo Flores <[email protected]> * Update res/metainfo.xml Co-authored-by: Eduardo Flores <[email protected]> * use latest version of runtime --------- Co-authored-by: Eduardo Flores <[email protected]>
- Loading branch information
1 parent
c897446
commit 4c73f09
Showing
18 changed files
with
8,843 additions
and
900 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"id": "dev.edfloreshz.CosmicTweaks", | ||
"runtime": "org.freedesktop.Platform", | ||
"runtime-version": "24.08", | ||
"sdk": "org.freedesktop.Sdk", | ||
"sdk-extensions": ["org.freedesktop.Sdk.Extension.rust-stable"], | ||
"command": "cosmic-ext-tweaks", | ||
"finish-args": [ | ||
"--share=ipc", | ||
"--share=network", | ||
"--socket=fallback-x11", | ||
"--socket=wayland", | ||
"--device=dri", | ||
"--talk-name=com.system76.CosmicSettingsDaemon", | ||
"--filesystem=xdg-config/cosmic:rw" | ||
], | ||
"build-options": { | ||
"append-path": "/usr/lib/sdk/rust-stable/bin", | ||
"env": { | ||
"CARGO_HOME": "/run/build/tweaks/cargo" | ||
} | ||
}, | ||
"modules": [ | ||
{ | ||
"name": "tweaks", | ||
"buildsystem": "simple", | ||
"build-commands": [ | ||
"cargo --offline build --release --verbose", | ||
"install -Dm0755 ./target/release/cosmic-ext-tweaks -t /app/bin/", | ||
"install -Dm644 ./res/app_icon.svg /app/share/icons/hicolor/scalable/apps/dev.edfloreshz.CosmicTweaks.svg", | ||
"install -Dm644 ./res/metainfo.xml /app/share/metainfo/dev.edfloreshz.CosmicTweaks.metainfo.xml", | ||
"install -Dm644 ./res/desktop_entry.desktop /app/share/applications/dev.edfloreshz.CosmicTweaks.desktop" | ||
], | ||
"sources": [ | ||
{ | ||
"type": "dir", | ||
"path": "./" | ||
}, | ||
"./cargo-sources.json" | ||
] | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
app-title = Tweaks pour COSMIC | ||
app-description = Un outil pour customizer votre COSMIC expérience. | ||
home = Home | ||
dock = Dock | ||
panel = Panneau | ||
color-schemes = Color schemes | ||
color-schemes-error = Error loading color schemes | ||
import-color-scheme = Import color scheme | ||
delete-color-scheme = Delete color scheme | ||
install-color-scheme = Install color scheme | ||
open-containing-folder = Ouvrir le dossier | ||
open-link = Ouvrir le lien | ||
installed = Installés | ||
available = Disponibles | ||
loading = Chargement... | ||
# Panel only | ||
show-panel = Afficher le panneau | ||
force-icon-buttons-in-panel = Forcer l'affichage des boutons avec des icons dans le panneau | ||
padding = Padding | ||
padding-description = Padding is the space between the contents and the borders of the dock or panel. | ||
spacing = Espacement | ||
spacing-description = L'espacement est l'espace entre les icônes dans le dock ou le panneau. | ||
save = Sauvegarder | ||
cancel = Annuler | ||
save-current-color-scheme = Save current color scheme | ||
color-scheme-name = Color scheme name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[Desktop Entry] | ||
Name=Tweaks for COSMIC | ||
Name[fr]=Tweaks pour COSMIC | ||
GenericName = COSMIC tweaks | ||
Comment=Tweaks your COSMIC desktop environment | ||
Comment[fr]=Améliorez votre environnement de bureau COSMIC | ||
Keywords=Folder;Manager | ||
Keywords[fr]=ajustement | ||
|
||
Exec=cosmic-ext-tweaks | ||
Terminal=false | ||
Type=Application | ||
StartupNotify=true | ||
Icon=dev.edfloreshz.CosmicTweaks | ||
Categories=COSMIC;Utility;Settings;DesktopSettings | ||
OnlyShowIn=COSMIC |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.