Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/sh
- theme() { cat <<EOF
- window{
- children:[inputbar,message,listview-box];
- }
- listview-box{
- children:[listview,button1];
- }
- button1{
- action:"kb-custom-1";
- expand: false;
- padding: 20px 0;
- horizontal-align: 0.5;
- cursor: pointer;
- content: "My Button";
- background-color:Orange;
- }
- EOF
- }
- SCRIPTPATH="$(cd -- "$(dirname "$0")" >/dev/null 2>&1 || exit 1 ; pwd -P)"
- rofi -no-config\
- -show a\
- -modi "a:${SCRIPTPATH}/m.sh"\
- -theme-str "$(theme)"
Advertisement
Add Comment
Please, Sign In to add comment