Hyprland-dotfiles/rofi/config.rasi

77 lines
1.2 KiB
Plaintext
Raw Normal View History

2023-03-09 07:52:31 -05:00
/*
# ____ __ _
# | _ \ ___ / _(_)
# | |_) / _ \| |_| |
# | _ < (_) | _| |
# |_| \_\___/|_| |_|
#
# by Stephan Raabe (2023)
# -----------------------------------------------------
*/
2023-01-25 14:14:03 -05:00
configuration {
2023-04-06 08:30:10 -04:00
display-drun: "Applications";
display-window: "Windows";
2023-01-25 14:14:03 -05:00
drun-display-format: "{name}";
2023-09-28 15:53:30 -04:00
font: "Fira Sans Bold 12";
2023-01-25 14:14:03 -05:00
modi: "window,run,drun";
2023-09-28 14:43:29 -04:00
show-icons: true;
2023-01-25 14:14:03 -05:00
}
2023-02-06 03:51:49 -05:00
/* Dark theme. */
@import "~/.cache/wal/colors-rofi-dark"
2023-01-25 14:14:03 -05:00
2023-04-11 09:25:32 -04:00
window {
2023-09-28 14:43:29 -04:00
width:900px;
2023-09-28 15:53:30 -04:00
height:590px;
2023-09-28 14:43:29 -04:00
spacing:0px;
padding:0px;
border: 3px;
border-color:#FFFFFF;
border-radius:15px;
cursor: "default";
transparency: "real";
fullscreen: "false";
background-color: transparent;
}
mainbox {
spacing:0px;
padding: 0px 0px 0px 500px;
background-image: url("~/.cache/current_wallpaper.jpg", height);
}
inputbar {
2023-09-28 15:53:30 -04:00
enabled:false;
hidden:true;
backgound-color: transparent;
2023-09-28 14:43:29 -04:00
}
listview {
padding: 10px;
2023-09-28 15:53:30 -04:00
background-color:transparent;
scrollbar: false;
dynamic: true;
2023-01-25 14:14:03 -05:00
}
2023-09-28 15:53:30 -04:00
// Elements //
2023-04-06 08:30:10 -04:00
element {
2023-09-28 15:53:30 -04:00
enabled: true;
padding: 10px;
cursor: pointer;
background-color: transparent;
border-radius:10px;
2023-01-25 14:14:03 -05:00
}
2023-04-11 09:25:32 -04:00
prompt {
text-color:#ffffff;
}
entry {
text-color:#ffffff;
}
2023-01-25 14:14:03 -05:00
/* vim: ft=sass