diff options
author | Daniel Weipert <code@drogueronin.de> | 2022-01-20 11:47:08 +0100 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2022-01-20 11:47:08 +0100 |
commit | ccd321f339f43b6321dbdf54bd989f279601f8aa (patch) | |
tree | dd81f1a931026c3c61c59765e9388f4743ec15cd /.config/wofi | |
parent | c4237ec0387c84630a7d9345cab61de77579301b (diff) |
Uses wofi instead of rofi
Diffstat (limited to '.config/wofi')
-rw-r--r-- | .config/wofi/style.css | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.config/wofi/style.css b/.config/wofi/style.css new file mode 100644 index 0000000..d40bf6b --- /dev/null +++ b/.config/wofi/style.css @@ -0,0 +1,26 @@ +window { + background-color: rgba(0, 0, 0, 0.8); + color: #fff; +} + +#input { + border: none; + border-bottom: 1px solid rgba(255, 255, 255, 0.1); + border-radius: 0; + background-color: transparent; + color: #fff; + padding: 3px 10px; +} +#input:focus { + box-shadow: none; +} + +#inner-box { + padding: 10px; +} + +#entry:selected { + background-color: rgba(255, 255, 255, 0.1); + outline: 0; +} + |