diff --git a/Changelog b/Changelog index 7522e0f0..8b58bd20 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,6 @@ v1.4.3 (dev): + - Add extra margin between prompt and entry. + - Remove colon from prompt. (#637) - Add support for passing extra properties in script mode. - Better error message on invalid argb syntax. - Fix default theme border. diff --git a/doc/default_theme.rasi b/doc/default_theme.rasi index 7b33c40b..fd9d0549 100644 --- a/doc/default_theme.rasi +++ b/doc/default_theme.rasi @@ -113,7 +113,7 @@ text-color: @selected-normal-foreground; } #inputbar { - spacing: 0; + spacing: 3px ; text-color: @normal-foreground; padding: 1px ; } diff --git a/doc/old-theme-convert-output.rasi b/doc/old-theme-convert-output.rasi index 266c7767..18bfa179 100644 --- a/doc/old-theme-convert-output.rasi +++ b/doc/old-theme-convert-output.rasi @@ -113,7 +113,7 @@ text-color: @selected-normal-foreground; } #inputbar { - spacing: 0; + spacing: 3px ; text-color: @normal-foreground; padding: 1px ; } diff --git a/include/default-theme.h b/include/default-theme.h index 5ece964b..f55ad246 100644 --- a/include/default-theme.h +++ b/include/default-theme.h @@ -140,5 +140,6 @@ const char *default_theme = "#inputbar, case-indicator, entry, prompt, button {" " spacing: 0;" " text-color: @normal-foreground;" - "}"; + "}" + "#inputbar { spacing: 3px; }"; #endif