Skip to content

Commit

Permalink
Merge pull request #1 from rxyhn/rxyhn
Browse files Browse the repository at this point in the history
add: launcher
  • Loading branch information
mngshm authored Mar 20, 2022
2 parents d299d82 + 0b85e30 commit b46488d
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 0 deletions.
Binary file added img/rxyhn-rofi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
85 changes: 85 additions & 0 deletions src/rxyhn.rasi
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
configuration {
modi: "drun";
display-drun: "Apps";
drun-display-format: "{name}";
font: "JetBrainsMono Nerd Font 9";
show-icons: true;
icon-theme: "Papirus";
}

@theme "/dev/null"

* {
bg: #181f21;
fg: #dadada;
accent: #22292b;
active: #3b4244;
rad: 12px;

background-color: @bg;
text-color: @fg;
}

window {
transparency: "real";
height: 100%;
width: 22%;
location: east;
x-offset: 0%;
y-offset: 0%;
}

inputbar {
children: [ textbox, entry ];
expand: false;
margin: 20px;
border-radius: @rad;
background-color: @active;
}

textbox {
str: "";
expand: false;
padding: 0 1% 0;
horizontal-align: 0.5;
vertical-align: 0.5;
border-radius: @rad;
background-color: @accent;
text-color: @fg;
font: "Material Icons 17";
}

entry{
expand: true;
padding: 2%;
placeholder: "Search";
border-radius: @rad;
background-color: @active;
}

listview {
columns: 2;
lines: 2;
cycle: false;
margin: 20px;
}

element {
orientation: vertical;
padding: 0.5em;
}

element-text, element-icon {
padding: 0.2em;
horizontal-align: 0.5;
background-color: inherit;
}

element-icon { size: 48px; }
listview, element, element selected, element-text, element-icon { cursor: pointer; }

element selected {
background-color: @active;
text-color: @fg;
border-radius: @rad;
}

0 comments on commit b46488d

Please sign in to comment.