INKINKWN6MRRH4CGUVTWI5TQ7VSCHA6ODXMLHVVFCHYPM27AYNNQC
nwg-drawer = (pkgs.callPackage ./tmp_nwg-drawer.nix {});
nwg-bar = (pkgs.callPackage ./nwg-bar.nix {});
nwg-drawer = (pkgs.callPackage ./tmp_nwg-drawer.nix { });
nwg-bar = (pkgs.callPackage ./nwg-bar.nix { });
pactl = "${pkgs.pulseaudio}/bin/pactl";
playerctl = "${pkgs.playerctl}/bin/playerctl";
"XF86LaunchB" = "exec ${nwg-drawer}/bin/nwg-drawer";
"XF86AudioPlay" = "exec ${playerctl} play-pause";
"XF86AudioNext" = "exec ${playerctl} next";
"XF86AudioPrev" = "exec ${playerctl} previous";
"XF86AudioLowerVolume" = "exec ${pactl} set-sink-volume $(${pactl} list short sinks | grep RUNNING | cut -f 1) -5%";
"XF86AudioRaiseVolume" = "exec ${pactl} set-sink-volume $(${pactl} list short sinks | grep RUNNING | cut -f 1) +5%";
"XF86AudioMute" = "exec ${pactl} set-sink-volume $(${pactl} list short sinks | grep RUNNING | cut -f 1) 0%";
# config.xdg.configFile."wofi/config".text = ''
# term alacritty
# lines 5
# '';
config.xdg.configFile."wofi/style.css".text = ''
window {
background-color: rgba(--wofi-rgb-color0,1);
font-family: iosevka;
transition: 1s ease-in-out;
}
#input image {
color: rgba(0,0,0,0)
}
#input {
margin-bottom: 20px;
margin-left: 100px;
margin-right: 100px;
margin-top: 10px;
box-shadow: none;
background-color: --wofi-color0;
border: 5px solid --wofi-color3;
border-radius: 0px;
transition: 0.5s ease-in-out;
}
#input:focus {
background-color: rgba(--wofi-rgb-color4,0.2);
margin-left: 10px;
margin-right: 10px;
transition: 0.5s ease-in-out;
}
label {
color: --wofi-color13;
transition: 0.5s ease-in-out;
}
#outer-box {
border: 5px solid --wofi-color2;
transition: 0.5s ease-in-out;
}
'';