Saataa andagii !

This commit is contained in:
Lukian 2025-03-09 17:59:28 +01:00
parent 828317089f
commit d3ed83c377
6 changed files with 104 additions and 67 deletions

View file

@ -0,0 +1,38 @@
## Wofi Config
## General
show=drun
prompt=Apps
normal_window=false
layer=overlay
term=foot
columns=2
## Geometry
location=center
orientation=vertical
halign=fill
line_wrap=off
dynamic_lines=false
## Images
allow_markup=true
allow_images=true
image_size=256
## Search
exec_search=false
hide_search=false
parse_search=false
insensitive=false
## Other
hide_scroll=true
no_actions=true
sort_order=default
gtk_dark=true
filter_rate=100
## Keys
key_expand=Tab
key_exit=Escape

View file

@ -11,8 +11,8 @@ TYPE="outer"
DURATION=3 DURATION=3
# wofi window config (in %) # wofi window config (in %)
WIDTH=70 WIDTH=35
HEIGHT=70 HEIGHT=60
SWWW_PARAMS="--transition-fps $FPS --transition-type $TYPE --transition-duration $DURATION" SWWW_PARAMS="--transition-fps $FPS --transition-type $TYPE --transition-duration $DURATION"
@ -24,9 +24,7 @@ RANDOM_PIC_NAME="${#PICS[@]}. random"
# WOFI STYLES # WOFI STYLES
CONFIG=$HOME/.config/hypr/wofi-wallpapers/config CONFIG=$HOME/.config/hypr/scripts/config
STYLE=$HOME/.config/hypr/wofi-wallpapers/style.css
COLORS=$HOME/.config/hypr/wofi-wallpapers/colors
# to check if swaybg is running # to check if swaybg is running
@ -37,7 +35,7 @@ fi
## Wofi Command ## Wofi Command
wofi_command="wofi --show dmenu \ wofi_command="wofi --show dmenu \
--prompt choose... --prompt choose...
--conf $CONFIG --style $STYLE --color $COLORS \ --conf $CONFIG \
--width=$WIDTH% --height=$HEIGHT% \ --width=$WIDTH% --height=$HEIGHT% \
--cache-file=/dev/null \ --cache-file=/dev/null \
--hide-scroll --no-actions \ --hide-scroll --no-actions \

View file

@ -1,63 +1,60 @@
{ window {
font-family: "Fantasque Sans Mono"; margin: 5px;
font-size: 18px; font-family: jetbrains-mono-nerd, FontAwesome, Roboto, Helvetica, Arial, sans-serif;
} font-size: 16px;
font-weight: 500;
#window { background-color: #32312e;
/*background-color: --wofi-color0;*/ border-radius: 15px;
background-color: rgba(50, 50, 50, 0.8); opacity: 1;
color: --wofi-color2;
border: 2px solid --wofi-color1;
border-radius: 0px;
}
#outer-box {
padding: 20px;
} }
#input { #input {
background-color: --wofi-color1; margin: 10px;
border: 1px solid --wofi-color3; background: none;
padding: 8px 12px; border-radius: 25px;
padding: 10px;
color: white;
border: none;
} }
#scroll { #input:focus {
margin-top: 20px; box-shadow: none;
margin-bottom: 20px;
} }
#inner-box { #inner-box {
margin: 0px;
} }
#img { #outer-box {
padding-right: 10px; margin: 10px;
} }
#text { #scroll {
color: --wofi-color2; margin: 10px;
}
#text:selected {
color: --wofi-color0;
} }
#entry { #entry {
padding: 6px; border-radius: 10px;
color: white;
margin: 10px 0px;
padding: 10px;
}
#img {
border-radius: 15px;
margin-right: 20px;
}
#text {
margin: 5px;
} }
#entry:selected { #entry:selected {
background-color: --wofi-color3; background-color: #E6C873;
background: linear-gradient(90deg, #bbccdd, #cca5dd); color: black;
color: --wofi-color0; outline: none;
} }
#unselected { #text:selected {
} color: black;
#selected {
}
#input, #entry:selected {
border-radius: 4px;
} }

View file

@ -81,7 +81,8 @@
}, },
"network": { "network": {
// "interface": "wlp2*", // (Optional) To force the use of this interface // "interface": "wlp2*", // (Optional) To force the use of this interface
"format-wifi": "{ipaddr}/{cidr} ({signalStrength}%) ", "family": "ipv4",
"format-wifi": "{essid} ({signalStrength}%) ",
"format-ethernet": "{ipaddr}/{cidr} ", "format-ethernet": "{ipaddr}/{cidr} ",
"tooltip-format": "{ifname} via {gwaddr} ", "tooltip-format": "{ifname} via {gwaddr} ",
"format-linked": "{ifname} (No IP) ", "format-linked": "{ifname} (No IP) ",

View file

@ -1,3 +1,2 @@
hide_scroll=true hide_scroll=true
width=600 width=350

View file

@ -4,7 +4,7 @@ window {
font-size: 16px; font-size: 16px;
font-weight: 500; font-weight: 500;
background-color: #32312e; background-color: #32312e;
border-radius: 35px; border-radius: 15px;
opacity: 1; opacity: 1;
} }
@ -34,18 +34,23 @@ window {
} }
#entry { #entry {
border-radius: 20px; border-radius: 10px;
color: white; color: white;
margin: 10px 0px; margin: 10px 0px;
padding: 10px; padding: 10px;
} }
#img {
border-radius: 15px;
margin-right: 20px;
}
#text { #text {
margin: 5px; margin: 5px;
} }
#entry:selected { #entry:selected {
background-color: #E6C873; background-color: #f5c2e7;
color: black; color: black;
outline: none; outline: none;
} }
@ -53,4 +58,3 @@ window {
#text:selected { #text:selected {
color: black; color: black;
} }