diff --git a/.vscode/launch.json b/.vscode/launch.json index e0785b7..cb20365 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,45 +1,45 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "type": "lldb", - "request": "launch", - "name": "Debug executable 'cosmic-tweaks'", - "cargo": { - "args": [ - "build", - "--bin=cosmic-tweaks", - "--package=cosmic-tweaks" - ], - "filter": { - "name": "cosmic-tweaks", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug unit tests in executable 'cosmic-tweaks'", - "cargo": { - "args": [ - "test", - "--no-run", - "--bin=cosmic-tweaks", - "--package=cosmic-tweaks" - ], - "filter": { - "name": "cosmic-tweaks", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "lldb", + "request": "launch", + "name": "Debug executable 'cosmic-ext-tweaks'", + "cargo": { + "args": [ + "build", + "--bin=cosmic-ext-tweaks", + "--package=cosmic-ext-tweaks" + ], + "filter": { + "name": "cosmic-ext-tweaks", + "kind": "bin" } - ] -} \ No newline at end of file + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in executable 'cosmic-ext-tweaks'", + "cargo": { + "args": [ + "test", + "--no-run", + "--bin=cosmic-ext-tweaks", + "--package=cosmic-ext-tweaks" + ], + "filter": { + "name": "cosmic-ext-tweaks", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + } + ] +} diff --git a/Cargo.lock b/Cargo.lock index d444ed9..c0875ee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1033,6 +1033,25 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "cosmic-ext-tweaks" +version = "0.1.0" +dependencies = [ + "anyhow", + "ashpd", + "cosmic-panel-config", + "dirs", + "i18n-embed", + "i18n-embed-fl", + "libcosmic", + "once_cell", + "open", + "ron", + "rust-embed", + "serde", + "tokio", +] + [[package]] name = "cosmic-panel-config" version = "0.1.0" @@ -1087,25 +1106,6 @@ dependencies = [ "thiserror", ] -[[package]] -name = "cosmic-tweaks" -version = "0.1.0" -dependencies = [ - "anyhow", - "ashpd", - "cosmic-panel-config", - "dirs", - "i18n-embed", - "i18n-embed-fl", - "libcosmic", - "once_cell", - "open", - "ron", - "rust-embed", - "serde", - "tokio", -] - [[package]] name = "cpufeatures" version = "0.2.12" diff --git a/Cargo.toml b/Cargo.toml index 453366a..055af14 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "cosmic-tweaks" +name = "cosmic-ext-tweaks" version = "0.1.0" edition = "2021" diff --git a/README.md b/README.md index a3d6dfd..6654955 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ -# COSMIC Tweaks +# Tweaks for COSMIC -A tweaking tool for the COSMIC desktop. +A tweaking tool for the COSMICâ„¢ desktop. ![window-light.png](res/screenshots/window-light.png#gh-light-mode-only) ![window-dark.png](res/screenshots/window-dark.png#gh-dark-mode-only) diff --git a/i18n/en/cosmic_tweaks.ftl b/i18n/en/cosmic_ext_tweaks.ftl similarity index 90% rename from i18n/en/cosmic_tweaks.ftl rename to i18n/en/cosmic_ext_tweaks.ftl index 066ebc2..5c1f873 100644 --- a/i18n/en/cosmic_tweaks.ftl +++ b/i18n/en/cosmic_ext_tweaks.ftl @@ -1,4 +1,4 @@ -app-title = COSMIC Tweaks +app-title = Tweaks for COSMIC app-description = A tool to customize your COSMIC desktop experience. home = Home @@ -23,4 +23,4 @@ spacing-description = Spacing is the space between the icons in the dock or pane save = Save cancel = Cancel save-current-color-scheme = Save current color scheme -color-scheme-name = Color scheme name \ No newline at end of file +color-scheme-name = Color scheme name diff --git a/i18n/es-MX/cosmic_tweaks.ftl b/i18n/es-MX/cosmic_ext_tweaks.ftl similarity index 89% rename from i18n/es-MX/cosmic_tweaks.ftl rename to i18n/es-MX/cosmic_ext_tweaks.ftl index b544731..0d37e1f 100644 --- a/i18n/es-MX/cosmic_tweaks.ftl +++ b/i18n/es-MX/cosmic_ext_tweaks.ftl @@ -1,4 +1,4 @@ -app-title = COSMIC Tweaks +app-title = Tweaks para COSMIC app-description = Una herramienta para personalizar la apariencia de COSMIC. home = Inicio @@ -20,4 +20,4 @@ spacing-description = El espacio es la distancia entre los iconos en el dock o p save = Guardar cancel = Cancelar save-current-color-scheme = Guardar esquema de color actual -color-scheme-name = Nombre del esquema de color \ No newline at end of file +color-scheme-name = Nombre del esquema de color diff --git a/justfile b/justfile index 01ca23c..f09fcce 100644 --- a/justfile +++ b/justfile @@ -1,4 +1,4 @@ -name := 'cosmic-tweaks' +name := 'cosmic-ext-tweaks' export APPID := 'dev.edfloreshz.CosmicTweaks' rootdir := '' diff --git a/res/dev.edfloreshz.CosmicTweaks.desktop b/res/dev.edfloreshz.CosmicTweaks.desktop index 2261763..7a5c28c 100644 --- a/res/dev.edfloreshz.CosmicTweaks.desktop +++ b/res/dev.edfloreshz.CosmicTweaks.desktop @@ -1,7 +1,7 @@ #TODO: more build-out, desktop actions, translations? [Desktop Entry] -Name=COSMIC Tweaks -Exec=cosmic-tweaks %F +Name=Tweaks for COSMIC +Exec=cosmic-ext-tweaks %F Terminal=false Type=Application StartupNotify=true diff --git a/res/dev.edfloreshz.CosmicTweaks.metainfo.xml b/res/dev.edfloreshz.CosmicTweaks.metainfo.xml index 2fc0544..19bd8cb 100644 --- a/res/dev.edfloreshz.CosmicTweaks.metainfo.xml +++ b/res/dev.edfloreshz.CosmicTweaks.metainfo.xml @@ -8,8 +8,8 @@ edfloreshz@proton.me https://github.com/edfloreshz/cosmic-tweaks https://github.com/edfloreshz/cosmic-tweaks - COSMIC Tweaks - A tweaking tool for the COSMIC desktop. + Tweaks for COSMIC + A tweaking tool for the COSMICâ„¢ desktop.

Customize your COSMIC desktop beyond infinity.