Use rounded powerlines in the default config

This commit is contained in:
speedie 2023-06-08 13:46:28 +02:00
parent e7c944a5d6
commit a78dddb597
3 changed files with 12 additions and 12 deletions

View file

@ -104,10 +104,10 @@ spmenu.powerlineprompt: 1
spmenu.powerlinecount: 1
spmenu.powerlinemode: 1
spmenu.powerlinecaps: 1
spmenu.promptpwlstyle: 0
spmenu.matchcountpwlstyle: 0
spmenu.modepwlstyle: 0
spmenu.capspwlstyle: 0
spmenu.promptpwlstyle: 2
spmenu.matchcountpwlstyle: 2
spmenu.modepwlstyle: 2
spmenu.capspwlstyle: 2
!! Misc color
spmenu.globalcolors: 1

View file

@ -137,10 +137,10 @@ spmenu = {
} );
/* Powerline options */
powerline = ( { promptstyle = 0; // Prompt powerline style (0: >, 1: \, 2: ))
matchcountstyle = 0; // Match count powerline style (0: <, 1: /, 2: ()
modestyle = 0; // Mode indicator powerline style (0: <, 1: /, 2: ()
capsstyle = 0; // Caps lock indicator powerline style (0: <, 1: /, 2: ()
powerline = ( { promptstyle = 2; // Prompt powerline style (0: >, 1: \, 2: ))
matchcountstyle = 2; // Match count powerline style (0: <, 1: /, 2: ()
modestyle = 2; // Mode indicator powerline style (0: <, 1: /, 2: ()
capsstyle = 2; // Caps lock indicator powerline style (0: <, 1: /, 2: ()
prompt = 1; // Enable prompt powerline (0/1)
matchcount = 1; // Enable match count powerline (0/1)
mode = 1; // Enable mode indicator powerline (0/1)

View file

@ -40,10 +40,10 @@ static int powerlineprompt = 1; /* Enable powerline for the prompt *
static int powerlinecount = 1; /* Enable powerline for the match count */
static int powerlinemode = 1; /* Enable powerline for the mode indicator */
static int powerlinecaps = 1; /* Enable powerline for the caps lock indicator */
static int promptpwlstyle = 0; /* Prompt powerline style (0: >, 1: \, 2: )) */
static int matchcountpwlstyle = 0; /* Match count powerline style (0: <, 1: /, 2: () */
static int modepwlstyle = 0; /* Mode indicator powerline style (0: <, 1: /, 2: () */
static int capspwlstyle = 0; /* Caps lock indicator powerline style (0: <, 1: /, 2: () */
static int promptpwlstyle = 2; /* Prompt powerline style (0: >, 1: \, 2: )) */
static int matchcountpwlstyle = 2; /* Match count powerline style (0: <, 1: /, 2: () */
static int modepwlstyle = 2; /* Mode indicator powerline style (0: <, 1: /, 2: () */
static int capspwlstyle = 2; /* Caps lock indicator powerline style (0: <, 1: /, 2: () */
/* Window properties */
static int dockproperty = 1; /* Set _NET_WM_WINDOW_TYPE_DOCK */