Dotfiles erweitert: Wofi, Waybar (Config, Style, Script) und das WatchTower Wallpaper hinzugefügt
This commit is contained in:
48
.config/wofi/style.css
Normal file
48
.config/wofi/style.css
Normal file
@@ -0,0 +1,48 @@
|
||||
/* Das Hauptfenster */
|
||||
window {
|
||||
margin: 0px;
|
||||
border: 2px solid #5e81ac; /* Ein schönes Blau */
|
||||
background-color: #1e1e2e; /* Dunkles Lila/Schwarz */
|
||||
border-radius: 12px;
|
||||
font-family: "Fira Code", monospace;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
/* Das Suchfeld oben */
|
||||
#input {
|
||||
margin: 10px;
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
background-color: #313244;
|
||||
color: #cdd6f4;
|
||||
}
|
||||
|
||||
/* Die Liste der Apps */
|
||||
#inner-box {
|
||||
margin: 10px;
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/* Einzelne Einträge */
|
||||
#entry {
|
||||
padding: 10px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
/* Der ausgewählte Eintrag (Hover/Focus) */
|
||||
#entry:selected {
|
||||
background-color: #5e81ac;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
/* Textfarben */
|
||||
#text {
|
||||
margin: 5px;
|
||||
color: #cdd6f4;
|
||||
}
|
||||
|
||||
#text:selected {
|
||||
color: #ffffff;
|
||||
font-weight: bold;
|
||||
}
|
||||
Reference in New Issue
Block a user