/*****----- Global Properties -----*****/ @import "themes/colors.rasi" @import "themes/fonts.rasi" /*****----- Main Window -----*****/ window { /* properties for window widget */ transparency: "real"; location: center; anchor: center; fullscreen: true; width: 0px; x-offset: 0px; y-offset: 0px; /* properties for all widgets */ enabled: true; margin: 0px 0px; padding: 0px; border-color: transparent; border-radius: 0px; cursor: "default"; background-color: @blur; } /*****----- Main Box -----*****/ mainbox { enabled: true; spacing: 10px; margin: 250px 420px; padding: 30px; background-color: transparent; border-radius: 15px; children: [ "inputbar", "message", "listview"]; } /*****----- Inputbar -----*****/ inputbar { enabled: true; spacing: 10px; margin: 0px; padding: 10px; border-radius: 0px; //background-color: @background-alt; text-color: @foreground; children: [ "textbox-prompt-colon", "entry" ]; } prompt { enabled: true; background-color: inherit; text-color: inherit; } textbox-prompt-colon { enabled: true; padding: 0px; expand: false; str: " "; background-color: inherit; text-color: inherit; } entry { enabled: true; padding: 0px; background-color: inherit; text-color: inherit; cursor: text; placeholder: "Search"; placeholder-color: inherit; } /*****----- Listview -----*****/ listview { enabled: true; padding: 25px 0 0; columns: 3; lines: 7; cycle: true; dynamic: true; scrollbar: false; layout: vertical; reverse: false; fixed-height: true; fixed-columns: true; spacing: 12px; cursor: "default"; } scrollbar { handle-width: 5px ; //handle-color: trasnparent; border-radius: 10px; //background-color: transparent; } /*****----- Elements -----*****/ element { enabled: true; spacing: 13px; margin: 0px; padding: 6px 6px 6px 10px; border-radius: 11px; text-color: @foreground; cursor: pointer; } element normal.normal, element alternate.normal { background-color: transparent; } element normal.urgent, element alternate.urgent, element selected.active, element normal.urgent element-text, element alternate.urgent element-text, element selected element-text, element selected.active element-text{ text-color: @purple; } element selected.normal { background-color: @purple; text-color: #fff; } element-icon { background-color: transparent; text-color: inherit; size: 25px; cursor: inherit; } element-text { background-color: transparent; text-color: inherit; highlight: inherit; cursor: inherit; vertical-align: 0.5; horizontal-align: 0.0; } /*****----- Message -----*****/ message { enabled: true; margin: 0px; padding: 10px; border-radius: 0px; background-color: @background-alt; text-color: @foreground; } textbox { background-color: transparent; text-color: @foreground; vertical-align: 0.5; horizontal-align: 0.0; highlight: none; placeholder-color: @foreground; blink: true; markup: true; } error-message { padding: 30px; background-color: @purple; text-color: @foreground; } /*@theme "/usr/share/rofi/themes/DarkBlue.rasi"*/