updates and a lot of em
This commit is contained in:
parent
30cd55aca8
commit
bd0cf6ff9b
37 changed files with 618 additions and 96 deletions
|
@ -11,7 +11,7 @@ configuration {
|
|||
display-drun: " ";
|
||||
display-run: " ";
|
||||
display-combi: " ";
|
||||
drun-display-format: "{name} [<span weight='light' size='small'><i>({generic})</i></span>] - {exec}";
|
||||
drun-display-format: "{name} [<span weight='light' size='small'><i>({generic})</i></span>]";/* - {exec}*/
|
||||
threads: 0;
|
||||
scroll-method: 0;
|
||||
disable-history: false;
|
||||
|
@ -23,6 +23,10 @@ configuration {
|
|||
kb-row-up: "Control-k";
|
||||
kb-row-left: "Control-h";
|
||||
kb-row-right: "Control-l";
|
||||
timeout {
|
||||
delay: 15;
|
||||
action: "kb-cancel";
|
||||
}
|
||||
}
|
||||
|
||||
* {
|
||||
|
@ -56,8 +60,8 @@ configuration {
|
|||
window {
|
||||
background-color: @base00t;
|
||||
text-color: @base05;
|
||||
transparency: "real";
|
||||
border-radius: 16px;
|
||||
/* transparency: "real"; */
|
||||
border-radius: 20px;
|
||||
border: 0px;
|
||||
width: 60%;
|
||||
location: center;
|
||||
|
@ -70,36 +74,40 @@ window {
|
|||
|
||||
mainbox {
|
||||
border-radius: 16;
|
||||
background-color: @transparent;
|
||||
/* background-color: @transparent; */
|
||||
background-color: @base00t;
|
||||
text-color: @base05;
|
||||
transparency: "real";
|
||||
}
|
||||
|
||||
inputbar {
|
||||
background-color: @transparent;
|
||||
/* background-color: @transparent; */
|
||||
background-color: @base00t;
|
||||
text-color: @base05;
|
||||
expand: false;
|
||||
border-radius: 36px;
|
||||
margin: 0px 0px 0px 0px;
|
||||
padding: 6px 6px 6px 6px;
|
||||
padding: 30px 6px 30px 6px;
|
||||
position: north;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
padding: 0px 6px 0px 5px;
|
||||
background-color: @transparent;
|
||||
/* background-color: @transparent; */
|
||||
background-color: @base00t;
|
||||
text-color: @base05;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: @transparent;
|
||||
/* background-color: @transparent; */
|
||||
background-color: @base00t;
|
||||
placeholder-color: @base05;
|
||||
text-color: @base05;
|
||||
expand: true;
|
||||
horizontal-align: 0;
|
||||
placeholder: "Search";
|
||||
placeholder: "";
|
||||
blink: true;
|
||||
border: 0px;
|
||||
padding: 0px 0px 0px 6px;
|
||||
|
@ -117,6 +125,7 @@ sidebar {
|
|||
}
|
||||
|
||||
mainbox {
|
||||
/* background-color: @base00t; */
|
||||
background-color: @base00t;
|
||||
text-color: @transparent;
|
||||
children: [ inputbar, listview, message ];
|
||||
|
|
|
@ -8,11 +8,15 @@ else
|
|||
#echo "this is not hidpi"
|
||||
fi
|
||||
|
||||
rofi -no-lazy-grab -show emoji -modi emoji -theme launchers-git/"$style".rasi $@ &
|
||||
c=0
|
||||
while ! xprop -f _KDE_NET_WM_BLUR_BEHIND_REGION 32c -set _KDE_NET_WM_BLUR_BEHIND_REGION 0 -id $(xdotool search -class 'rofi') ; do
|
||||
sleep .1
|
||||
c=$((c+1))
|
||||
[[ c = 50 ]] && exit; # stop script window didn't appear after 5 seconds
|
||||
done
|
||||
rofi -no-lazy-grab -show emoji -modi emoji -theme launchers-git/"$style".rasi
|
||||
|
||||
|
||||
|
||||
# $@ &
|
||||
# c=0
|
||||
# while ! xprop -f _KDE_NET_WM_BLUR_BEHIND_REGION 32c -set _KDE_NET_WM_BLUR_BEHIND_REGION 0 -id $(xdotool search -class 'rofi') ; do
|
||||
# sleep .1
|
||||
# c=$((c+1))
|
||||
# [[ c = 50 ]] && exit; # stop script window didn't appear after 5 seconds
|
||||
# done
|
||||
|
||||
|
|
|
@ -12,10 +12,13 @@ else
|
|||
#echo "this is not hidpi"
|
||||
fi
|
||||
|
||||
rofi -no-lazy-grab -show combi -combi-modi "drun,run" -theme launchers-git/"$style".rasi $@ &
|
||||
c=0
|
||||
while ! xprop -f _KDE_NET_WM_BLUR_BEHIND_REGION 32c -set _KDE_NET_WM_BLUR_BEHIND_REGION 0 -id $(xdotool search -class 'rofi') ; do
|
||||
sleep .1
|
||||
c=$((c+1))
|
||||
[[ c = 50 ]] && exit; # stop script window didn't appear after 5 seconds
|
||||
done
|
||||
rofi -no-lazy-grab -show combi -combi-modi "drun,run" -theme launchers-git/"$style".rasi
|
||||
|
||||
|
||||
# $@ &
|
||||
# c=0
|
||||
# while ! xprop -f _KDE_NET_WM_BLUR_BEHIND_REGION 32c -set _KDE_NET_WM_BLUR_BEHIND_REGION 0 -id $(xdotool search -class 'rofi') ; do
|
||||
# sleep .1
|
||||
# c=$((c+1))
|
||||
# [[ c = 50 ]] && exit; # stop script window didn't appear after 5 seconds
|
||||
# done
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue