Linux configuration stuffs

add mocha theme directly to dotfiles

clxxiii 915b4cb0 6f3c25dc

+111
+111
rofi/catppuccin-mocha.rasi
··· 1 + * { 2 + bg-col: #1e1e2e; 3 + bg-col-light: #1e1e2e; 4 + border-col: #1e1e2e; 5 + selected-col: #1e1e2e; 6 + blue: #89b4fa; 7 + fg-col: #cdd6f4; 8 + fg-col2: #f38ba8; 9 + grey: #6c7086; 10 + 11 + width: 600; 12 + font: "JetBrainsMono Nerd Font 14"; 13 + } 14 + 15 + element-text, element-icon , mode-switcher { 16 + background-color: inherit; 17 + text-color: inherit; 18 + } 19 + 20 + window { 21 + height: 360px; 22 + border: 3px; 23 + border-color: @border-col; 24 + background-color: @bg-col; 25 + } 26 + 27 + mainbox { 28 + background-color: @bg-col; 29 + } 30 + 31 + inputbar { 32 + children: [prompt,entry]; 33 + background-color: @bg-col; 34 + border-radius: 5px; 35 + padding: 2px; 36 + } 37 + 38 + prompt { 39 + background-color: @blue; 40 + padding: 6px; 41 + text-color: @bg-col; 42 + border-radius: 3px; 43 + margin: 20px 0px 0px 20px; 44 + } 45 + 46 + textbox-prompt-colon { 47 + expand: false; 48 + str: ":"; 49 + } 50 + 51 + entry { 52 + padding: 6px; 53 + margin: 20px 0px 0px 10px; 54 + text-color: @fg-col; 55 + background-color: @bg-col; 56 + } 57 + 58 + listview { 59 + border: 0px 0px 0px; 60 + padding: 6px 0px 0px; 61 + margin: 10px 0px 0px 20px; 62 + columns: 2; 63 + lines: 5; 64 + background-color: @bg-col; 65 + } 66 + 67 + element { 68 + padding: 5px; 69 + background-color: @bg-col; 70 + text-color: @fg-col ; 71 + } 72 + 73 + element-icon { 74 + size: 25px; 75 + } 76 + 77 + element selected { 78 + background-color: @selected-col ; 79 + text-color: @fg-col2 ; 80 + } 81 + 82 + mode-switcher { 83 + spacing: 0; 84 + } 85 + 86 + button { 87 + padding: 10px; 88 + background-color: @bg-col-light; 89 + text-color: @grey; 90 + vertical-align: 0.5; 91 + horizontal-align: 0.5; 92 + } 93 + 94 + button selected { 95 + background-color: @bg-col; 96 + text-color: @blue; 97 + } 98 + 99 + message { 100 + background-color: @bg-col-light; 101 + margin: 2px; 102 + padding: 2px; 103 + border-radius: 5px; 104 + } 105 + 106 + textbox { 107 + padding: 6px; 108 + margin: 20px 0px 0px 20px; 109 + text-color: @blue; 110 + background-color: @bg-col-light; 111 + }