We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf85ec7 commit 2a59bd5Copy full SHA for 2a59bd5
desktop/src/consts.rs
@@ -2,7 +2,10 @@ pub(crate) const APP_NAME: &str = "Graphite";
2
#[cfg(any(target_os = "linux", target_os = "windows"))]
3
pub(crate) const APP_ID: &str = "art.graphite.Graphite";
4
5
+#[cfg(target_os = "linux")]
6
pub(crate) const APP_DIRECTORY_NAME: &str = "graphite";
7
+#[cfg(not(target_os = "linux"))]
8
+pub(crate) const APP_DIRECTORY_NAME: &str = "Graphite";
9
pub(crate) const APP_LOCK_FILE_NAME: &str = "instance.lock";
10
pub(crate) const APP_STATE_FILE_NAME: &str = "state.ron";
11
pub(crate) const APP_PREFERENCES_FILE_NAME: &str = "preferences.ron";
0 commit comments