move programs to common

This commit is contained in:
Noa Aarts 2024-03-01 12:50:03 +01:00
parent 9b52db0aee
commit e2c2018b90
8 changed files with 1161 additions and 525 deletions

84
common/wofi.nix Normal file
View file

@ -0,0 +1,84 @@
{ config, pkgs, inputs, ... }:
{
programs.wofi = {
enable = true;
settings = {
};
style = ''
* {
outline: none;
outline-style: none;
}
#window {
margin: 10px;
border: none;
background-color: #030035;
border-radius: 10px;
font-family:
JetBrains Mono NF,
monospace;
font-weight: bold;
font-size: 14px;
}
#outer-box {
margin: 10px;
border: 2px @lavender;
border-radius: 10px;
background-color: transparent;
}
#input {
border: none;
border-radius: 10px;
margin-left: 2px;
color: @text;
outline-style: none;
background-color: @base;
}
#scroll {
border: 10px solid @mantle;
border-radius: 10px;
/*padding-right: 10px;*/
outline: none;
background-color: @base;
}
#inner-box {
border: none;
border-radius: 10px;
background-color: transparent;
}
#entry {
border: none;
/*border-radius: 10px;
margin-right: 15px;
margin-left: 15px;*/
padding-right: 10px;
padding-left: 10px;
color: @subtext0;
background-color: @base;
}
#entry:selected {
border: none;
background-color: @green;
}
#text:selected {
border: none;
color: @crust;
}
#img {
background-color: transparent;
margin-right: 6px;
}
'';
};
}