first commit

This commit is contained in:
hdvt
2025-11-13 23:48:27 +03:00
commit 981b16aa8d
28 changed files with 1844 additions and 0 deletions

14
wofi/spotify/config Normal file
View File

@@ -0,0 +1,14 @@
# Расположение меню (top, center, bottom, left, right и т.д.)
location=center
# Отступы от краев экрана
margin_top=20%
margin_bottom=20%
# Ширина и высота меню
width=300
height=250
# Не показывать строку поиска
show_search=false
# Не показывать иконки (мы используем свои в тексте)
show_icons=false
# Количество колонок
columns=1

38
wofi/spotify/style.css Normal file
View File

@@ -0,0 +1,38 @@
/* Общий стиль окна */
window {
background-color: rgba(25, 25, 25, 0.7); /* Темно-серый, полупрозрачный фон */
border: 2px solid #ffffff; /* Белая рамка */
border-radius: 15px; /* Скругленные углы */
font-family: "JetBrainsMono Nerd Font", sans-serif; /* Укажите ваш Nerd Font */
}
/* Скрытие поля ввода (оно нам не нужно) */
#input {
border: none;
background-color: transparent;
color: #ffffff;
padding: 5px;
}
/* Скрытие внешней рамки */
#outer-box {
padding: 20px;
}
/* Стиль для каждого пункта меню */
#entry {
padding: 10px;
color: #e0e0e0; /* Светло-серый текст */
border-radius: 8px;
}
/* Стиль для выбранного пункта меню при навигации */
#entry:selected {
background-color: rgba(255, 255, 255, 0.1); /* Легкая белая подсветка */
color: #ffffff; /* Белый текст */
}
/* Стиль текста в заголовке (prompt) */
#text:selected {
color: #ffffff;
}