diff options
author | ThanosApollo <[email protected]> | 2022-10-26 21:52:11 +0300 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2022-10-26 21:52:11 +0300 |
commit | 1d14d2ac6e1a37184be0eaef4addeb00ee7e4f37 (patch) | |
tree | 9aaa9cf0e20e2de170a3c63fa31873e74b0d5dbe /.config/rofi/themes/launchpad.rasi | |
parent | fde632d972b630fed4196335cc40fc1cea0b0f16 (diff) |
Redo rofi themes
Diffstat (limited to '.config/rofi/themes/launchpad.rasi')
-rw-r--r-- | .config/rofi/themes/launchpad.rasi | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/.config/rofi/themes/launchpad.rasi b/.config/rofi/themes/launchpad.rasi new file mode 100644 index 0000000..14c2564 --- /dev/null +++ b/.config/rofi/themes/launchpad.rasi @@ -0,0 +1,94 @@ +/******************************************************************************* + * MACOS LAUNCHPAD LIKE THEME FOR ROFI + * User : LR-Tech + * Theme Repo : https://github.com/lr-tech/rofi-themes-collection + *******************************************************************************/ + +* { + font: "Montserrat 9"; + + bg0: #24242480; + bg1: #363636; + bg2: #f5f5f520; + bg3: #f5f5f540; + bg4: #0860f2E6; + + fg0: #f5f5f5; + fg1: #f5f5f580; + + background-color: transparent; + text-color: @fg0; + padding: 0px; + margin: 0px; +} + +window { + fullscreen: true; + padding: 1em; + background-color: @bg0; +} + +mainbox { + padding: 8px; +} + +inputbar { + background-color: @bg2; + + margin: 0px calc( 50% - 120px ); + padding: 2px 4px; + spacing: 4px; + + border: 1px; + border-radius: 2px; + border-color: @bg3; + + children: [icon-search,entry]; +} + +prompt { + enabled: false; +} + +icon-search { + expand: false; + filename: "search"; + vertical-align: 0.5; +} + +entry { + placeholder: "Search"; + placeholder-color: @bg2; +} + +listview { + margin: 48px calc( 50% - 560px ); + spacing: 48px; + columns: 6; + fixed-columns: true; +} + +element, element-text, element-icon { + cursor: pointer; +} + +element { + padding: 8px; + spacing: 4px; + + orientation: vertical; + border-radius: 16px; +} + +element selected { + background-color: @bg4; +} + +element-icon { + size: 4em; + horizontal-align: 0.5; +} + +element-text { + horizontal-align: 0.5; +} |