/*****----- Configuration -----*****/ configuration { show-icons: false; markup-rows: true; } /*****----- Global Properties -----*****/ * { background: #303030FF; background-alt: #353535FF; foreground: #EBDBB2FF; selected: #83A598FF; active: #B8BB26FF; urgent: #FB4934FF; } /* USE_BUTTONS=YES */ /*****----- Main Window -----*****/ window { /* properties for window widget */ transparency: "real"; location: center; anchor: center; fullscreen: false; width: 1000px; x-offset: 0px; y-offset: 0px; /* properties for all widgets */ enabled: true; margin: 0px; padding: 0px; border: 0px solid; border-radius: 0px; border-color: @selected; cursor: "default"; background-color: @background; } /*****----- Main Box -----*****/ mainbox { enabled: true; spacing: 15px; margin: 0px; padding: 30px; border: 0px solid; border-radius: 0px; border-color: @selected; background-color: transparent; children: [ "inputbar", "message", "listview"]; } /*****----- Inputbar -----*****/ inputbar { enabled: true; spacing: 15px; margin: 0px; padding: 0px; border: 0px; border-radius: 0px; border-color: @selected; background-color: transparent; text-color: @foreground; children: [ "prompt"]; } dummy { background-color: transparent; } prompt { enabled: true; padding: 12px; border-radius: 0px; background-color: @active; text-color: @background; } /*****----- Message -----*****/ message { enabled: true; margin: 0px; border: 0px solid; border-radius: 0px; border-color: @selected; background-color: transparent; text-color: @foreground; } textbox { font: "BlexMono Nerd Font Mono 14"; background-color: transparent; text-color: inherit; cursor: inherit; } error-message { padding: 12px; border: 0px solid; border-radius: 0px; border-color: @selected; background-color: @background; text-color: @foreground; } /*****----- Listview -----*****/ listview { enabled: true; columns: 6; lines: 1; cycle: true; dynamic: true; scrollbar: false; layout: vertical; reverse: false; fixed-height: true; fixed-columns: true; spacing: 15px; margin: 0px; padding: 0px; border: 0px solid; border-radius: 0px; border-color: @selected; background-color: transparent; text-color: @foreground; cursor: "default"; } /*****----- Elements -----*****/ element { enabled: true; spacing: 0px; margin: 0px; padding: 15px 10px; border: 0px solid; border-radius: 0px; border-color: @selected; background-color: @background-alt; text-color: @foreground; cursor: pointer; } element-text { font: "BlexMono Nerd Font Mono 14"; background-color: transparent; text-color: inherit; cursor: inherit; vertical-align: 0.5; horizontal-align: 0.5; } element selected.normal { background-color: var(selected); text-color: var(background); }