Compare commits
No commits in common. "62171bbd568de67c6028c0a4332da0446d1af44a" and "0fdd26dbd248bc81feff1d12428df24d8cb09e77" have entirely different histories.
62171bbd56
...
0fdd26dbd2
3 changed files with 85 additions and 7 deletions
|
@ -179,7 +179,6 @@
|
||||||
|
|
||||||
# fonts
|
# fonts
|
||||||
fonts = {
|
fonts = {
|
||||||
fontDir.enable = true; # links fonts to /run/current-system/sw/share/X11/fonts
|
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
((nerdfonts.override { fonts = [ "Hack" "DejaVuSansMono" "DroidSansMono" "Noto" ]; }))
|
((nerdfonts.override { fonts = [ "Hack" "DejaVuSansMono" "DroidSansMono" "Noto" ]; }))
|
||||||
mononoki
|
mononoki
|
||||||
|
|
|
@ -22,10 +22,10 @@
|
||||||
"special:scratchpad, on-created-empty:foot"
|
"special:scratchpad, on-created-empty:foot"
|
||||||
];
|
];
|
||||||
monitor = [
|
monitor = [
|
||||||
#"eDP-1, 2880x1800@120, 0x1080, 2"
|
"eDP-1, 2880x1800@120, 0x1080, 2"
|
||||||
#"HDMI-A-1, 1920x1080@75, 0x0, 1"
|
"HDMI-A-1, 1920x1080@75, 0x0, 1"
|
||||||
"eDP-1, 2880x1800@120, 0x1440, 2"
|
#"eDP-1, 2880x1800@120, 0x1440, 2"
|
||||||
"HDMI-A-1, 2560x1440@75, 0x0, 1"
|
#"HDMI-A-1, 2560x1440@75, 0x0, 1"
|
||||||
];
|
];
|
||||||
input = {
|
input = {
|
||||||
kb_layout = "de";
|
kb_layout = "de";
|
||||||
|
@ -64,7 +64,7 @@
|
||||||
bind = [
|
bind = [
|
||||||
# opening programs
|
# opening programs
|
||||||
"$mod, Return, exec, foot"
|
"$mod, Return, exec, foot"
|
||||||
"$mod, D, exec, tofi-drun --font /run/current-system/sw/share/X11/fonts/NotoMonoNerdFont-Regular.ttf"
|
"$mod, D, exec, wofi"
|
||||||
"$mod, M, exit, "
|
"$mod, M, exit, "
|
||||||
"$mod, Q, killactive, "
|
"$mod, Q, killactive, "
|
||||||
|
|
||||||
|
@ -175,6 +175,86 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.wofi = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
width = 600;
|
||||||
|
height = 365;
|
||||||
|
location = "center";
|
||||||
|
show = "drun";
|
||||||
|
prompt = "Search...";
|
||||||
|
filter_rate = 100;
|
||||||
|
allow_markup = true;
|
||||||
|
no_actions = true;
|
||||||
|
halign = "fill";
|
||||||
|
orientation = "vertical";
|
||||||
|
content_halign = "fill";
|
||||||
|
insensitive = true;
|
||||||
|
allow_images = true;
|
||||||
|
image_size = 40;
|
||||||
|
gtk_dark = true;
|
||||||
|
layer = "overlay";
|
||||||
|
};
|
||||||
|
style = ''
|
||||||
|
window {
|
||||||
|
margin: 0px;
|
||||||
|
border-radius: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#input {
|
||||||
|
margin: 5px;
|
||||||
|
border: none;
|
||||||
|
color: #f8f8f2;
|
||||||
|
border-radius: 15px;
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#inner-box {
|
||||||
|
margin: 5px;
|
||||||
|
border: none;
|
||||||
|
border-radius: 15px;
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#outer-box {
|
||||||
|
margin: 5px;
|
||||||
|
border: none;
|
||||||
|
border-radius: 15px;
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#scroll {
|
||||||
|
margin: 0px;
|
||||||
|
border-radius: 15px;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#text {
|
||||||
|
border-radius: 15px;
|
||||||
|
margin: 5px;
|
||||||
|
border: none;
|
||||||
|
color: #f8f8f2;
|
||||||
|
}
|
||||||
|
|
||||||
|
#entry.activatable #text {
|
||||||
|
color: #282a36;
|
||||||
|
}
|
||||||
|
|
||||||
|
#entry > * {
|
||||||
|
color: #f8f8f2;
|
||||||
|
}
|
||||||
|
|
||||||
|
#entry:selected {
|
||||||
|
border-radius: 15px;
|
||||||
|
background-color: #62AEEFFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
#entry:selected #text {
|
||||||
|
border-radius: 15px;
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
services.mako = {
|
services.mako = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
ausweisapp
|
ausweisapp
|
||||||
|
|
||||||
# stuff
|
# stuff
|
||||||
tofi
|
|
||||||
jq
|
jq
|
||||||
vlc
|
vlc
|
||||||
openvpn
|
openvpn
|
||||||
|
|
Loading…
Reference in a new issue