From 950af2743b35e2d23fda2dc4f36110ab51102b1a Mon Sep 17 00:00:00 2001 From: Dustin Falgout Date: Fri, 10 Feb 2017 04:46:18 -0600 Subject: [PATCH] fix config file generation --- .gitattributes | 1 + build/utils.sh | 2 +- web-greeter/whither.yml | 20 ++++++++++---------- 3 files changed, 12 insertions(+), 11 deletions(-) diff --git a/.gitattributes b/.gitattributes index a3c1e02..8073a96 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,3 @@ **/_vendor/** linguist-vendored **/docs/** linguist-vendored +**/i18n/** linguist-vendored diff --git a/build/utils.sh b/build/utils.sh index 8b0a23f..8e4c048 100755 --- a/build/utils.sh +++ b/build/utils.sh @@ -99,7 +99,7 @@ set_config() { KEY="$1" [[ '' != "$2" ]] && VALUE="$2" || VALUE="$3" - sed -i "s|@${KEY}@|@${VALUE}@|g" "${BUILD_DIR}/web-greeter/whither.yml" + sed -i "s|@${KEY}@|${VALUE}|g" "${BUILD_DIR}/web-greeter/whither.yml" } diff --git a/web-greeter/whither.yml b/web-greeter/whither.yml index a9bf168..e72b38a 100644 --- a/web-greeter/whither.yml +++ b/web-greeter/whither.yml @@ -4,17 +4,17 @@ WebGreeter: # Whither's Config whither: - app_id: com.antergos.web-greeter # Unique identifier string (dbus style) - toolkit: auto # auto|qt|gtk + app_id: com.antergos.web-greeter + toolkit: auto entry_point: autoload: False - url: '' # Valid URI for an HTML page to be loaded when the app starts (autoload only). + url: '' window: width: height: - initial_state: maximized # normal|maximized|minimized|fullscreen - decorated: True # Should the window show standard titlebar and action buttons. - stays_on_top: False # Should the window stay on top of all other windows. + initial_state: maximized + decorated: False + stays_on_top: True title: Web Greeter for LightDM icon: no_desktop_env: False @@ -31,7 +31,7 @@ WebGreeter: themes_dir: '@themes_dir@' user_image: '@user_image@' version: - full: '@full_version@' - major: '@major_version@' - minor: '@minor_version@' - micro: '@micro_version@' + full: '3.0.0alpha3' + major: '3' + minor: '0' + micro: '0alpha3'