fix(swww)!: remove
Does not currently build
This commit is contained in:
parent
3c6419cf45
commit
703cd0264b
3 changed files with 29 additions and 27 deletions
|
@ -27,7 +27,8 @@ in
|
||||||
builtins.concatLists [
|
builtins.concatLists [
|
||||||
[
|
[
|
||||||
river
|
river
|
||||||
swww # wallpaper deamon
|
# FIXME: does not build
|
||||||
|
# swww # wallpaper deamon
|
||||||
waybar # status bar
|
waybar # status bar
|
||||||
xwayland
|
xwayland
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
|
@ -53,26 +54,26 @@ in
|
||||||
source = ./style.css;
|
source = ./style.css;
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.user.services."swww" = {
|
# systemd.user.services."swww" = {
|
||||||
Unit = {
|
# Unit = {
|
||||||
Description = "swww Daemon";
|
# Description = "swww Daemon";
|
||||||
PartOf = "graphical-session.target";
|
# PartOf = "graphical-session.target";
|
||||||
};
|
# };
|
||||||
Service = {
|
# Service = {
|
||||||
ExecStart = "${pkgs.swww}/bin/swww init --no-daemon";
|
# ExecStart = "${pkgs.swww}/bin/swww init --no-daemon";
|
||||||
ExecStop = "${pkgs.swww}/bin/swww kill";
|
# ExecStop = "${pkgs.swww}/bin/swww kill";
|
||||||
Type = "simple";
|
# Type = "simple";
|
||||||
Restart = "always";
|
# Restart = "always";
|
||||||
RestartSec = 5;
|
# RestartSec = 5;
|
||||||
};
|
# };
|
||||||
Install = {
|
# Install = {
|
||||||
WantedBy = [ "graphical-session.target" ];
|
# WantedBy = [ "graphical-session.target" ];
|
||||||
};
|
# };
|
||||||
# description = "Swww Deamon";
|
# # description = "Swww Deamon";
|
||||||
# wantedBy = [ "graphical-session.target" ];
|
# # wantedBy = [ "graphical-session.target" ];
|
||||||
# partOf = [ "graphical-session.target" ];
|
# # partOf = [ "graphical-session.target" ];
|
||||||
# script = "${pkgs.swww}/bin/swww init --no-daemon";
|
# # script = "${pkgs.swww}/bin/swww init --no-daemon";
|
||||||
};
|
# };
|
||||||
|
|
||||||
# services.swww = {
|
# services.swww = {
|
||||||
# enabled = true;
|
# enabled = true;
|
||||||
|
|
|
@ -169,10 +169,10 @@ wireplumber &
|
||||||
waybar &
|
waybar &
|
||||||
|
|
||||||
# Set wallpaper
|
# Set wallpaper
|
||||||
{
|
# {
|
||||||
swww init
|
# swww init
|
||||||
local last_bg = "${HOME}/Wallpapers/last"
|
# local last_bg = "${HOME}/Wallpapers/last"
|
||||||
[ -f "${last_bg}" ] && swww img "${last_bg}"
|
# [ -f "${last_bg}" ] && swww img "${last_bg}"
|
||||||
}
|
# }
|
||||||
|
|
||||||
exec rivertile -view-padding 6 -outer-padding 6
|
exec rivertile -view-padding 6 -outer-padding 6
|
||||||
|
|
|
@ -16,7 +16,8 @@
|
||||||
# FIXME: only buildable on darwin
|
# FIXME: only buildable on darwin
|
||||||
# pngpaste = pkgs.callPackage ./pngpaste { };
|
# pngpaste = pkgs.callPackage ./pngpaste { };
|
||||||
srtool-cli = pkgs.callPackage ./srtool-cli { };
|
srtool-cli = pkgs.callPackage ./srtool-cli { };
|
||||||
swww = pkgs.callPackage ./swww { };
|
# FIXME: does not build
|
||||||
|
# swww = pkgs.callPackage ./swww { };
|
||||||
vim-fmi-cli = pkgs.callPackage ./vim-fmi-cli { };
|
vim-fmi-cli = pkgs.callPackage ./vim-fmi-cli { };
|
||||||
win2xcur = pkgs.callPackage ./win2xcur { };
|
win2xcur = pkgs.callPackage ./win2xcur { };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue