latest user files

This commit is contained in:
2024-10-10 08:27:07 +02:00
parent 9a37e67d11
commit 43621c8201
47 changed files with 2767 additions and 93 deletions
+24 -41
View File
@@ -2,67 +2,49 @@ configuration {
show-icons: false;
}
@import "../colors.rasi"
@import "../config.rasi"
window {
transparency: "real";
location: center;
anchor: center;
fullscreen: false;
x-offset: 0px;
y-offset: 60px;
width: 635px;
border: 2px solid;
border-radius: 10px;
border-color: var(borders);
cursor: "default";
background-color: var(theme-bg-color);
fullscreen: true;
border: none;
border-radius: 0;
}
mainbox {
enabled: true;
spacing: 15px;
margin: 0px;
padding: 30px;
border: 0px solid;
border-radius: 0px;
border-color: var(borders);
padding: 200px;
background-color: transparent;
children: ["inputbar", "listview" ];
expand: true;
}
inputbar {
enabled: true;
spacing: 15px;
spacing: 10px;
margin: 0px;
padding: 0px;
background-color: transparent;
text-color: var(theme-text-color);
padding: 12px 19px 12px 16px;
border-radius: 10px;
text-color: var(theme-selected-bg-color);
children: ["textbox-prompt-colon", "prompt"];
background-color: var(theme-selected-fg-color);
expand: false;
}
textbox-prompt-colon {
enabled: true;
expand: false;
font: "MonarchOS 10";
str: "";
padding: 12px 16px;
border-radius: 100%;
background-color: var(theme-selected-bg-color);
text-color: @theme-selected-fg-color;
str: "󰣇";
margin: 0;
padding: 0 4px 0 0;
font: "JetBrainsMono Nerd Font 16";
}
prompt {
enabled: true;
padding: 12px;
border-radius: 100%;
background-color: var(theme-text-color);
text-color: var(theme-bg-color);
padding: 4px 0 0 0;
}
dummy {
@@ -72,12 +54,12 @@ dummy {
listview {
enabled: true;
layout: horizontal;
columns: 2;
lines: 5;
cycle: true;
dynamic: false;
scrollbar: false;
layout: horizontal;
reverse: false;
fixed-height: true;
fixed-columns: true;
@@ -87,6 +69,8 @@ listview {
background-color: transparent;
text-color: var(theme-text-color);
cursor: "default";
padding: 0;
margin:0 ;
}
element {
@@ -95,7 +79,7 @@ element {
margin: 0px;
border: 0px solid;
border-radius: 100%;
border-radius: 10px;
background-color: transparent;
@@ -106,10 +90,9 @@ element-text {
background-color: transparent;
text-color: var(text);
cursor: inherit;
vertical-align: 0.5;
horizontal-align: 0.5;
padding: 10px 40px;
horizontal-align: 0;
vertical-align: 0;
horizontal-align: 1;
padding: 0 10px;
}
element selected.normal {
background-color: var(theme-selected-bg-color);
+2 -1
View File
@@ -8,7 +8,7 @@
# CMDs
uptime="`uptime -p | sed -e 's/up //g'`"
host=`hostname`
host="$USER@"`hostname`
# Options
shutdown='󰤆'
@@ -31,6 +31,7 @@ rofi_cmd() {
confirm_cmd() {
rofi -dmenu \
-p 'Confirmation' \
-normal-window \
-mesg 'Confirm '${chosen} \
-theme ~/.config/rofi/powermenu/confirm.rasi
}