Replace i3lock with i3lock-color
This commit is contained in:
parent
14dae672b2
commit
cad3df2800
4 changed files with 6 additions and 3 deletions
|
@ -17,7 +17,10 @@
|
|||
- Fix/map media keys (already declared within [`i3.nix`](i3.nix) but are non-functional
|
||||
- Fix kitty bell disable not working
|
||||
- Fix Nordic GTK theme icons not working in nautilus
|
||||
- Fix i3lock running restarting on i3 restart
|
||||
- i3lock
|
||||
- Fix i3lock running restarting on i3 restart
|
||||
- Add `i3lock-colors` as an explicit dependency of `lock` instead of `i3.nix`
|
||||
- Customize ring colors
|
||||
- Fix background squishing for polybar (use nautilus?)
|
||||
- Add Gruvbox switching support
|
||||
- kitty theme is "Gruvbox Dark", [see the full list](https://github.com/kovidgoyal/kitty-themes/blob/master/themes.json).
|
||||
|
|
1
i3.nix
1
i3.nix
|
@ -5,6 +5,7 @@ let
|
|||
in {
|
||||
# Dependencies
|
||||
home.packages = with pkgs; [
|
||||
i3lock-color # TODO: add as dependency of ./lock
|
||||
(pkgs.callPackage ./lock { })
|
||||
playerctl # pactl comes with PulseAudio
|
||||
scrot # Screnshot keybindings
|
||||
|
|
|
@ -5,5 +5,4 @@ substituteAll {
|
|||
src = ./lock.sh;
|
||||
dir = "bin";
|
||||
isExecutable = true;
|
||||
inherit (pkgs) i3lock;
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
i3lock -i `readlink -f ~/.background-image`
|
||||
i3lock-color --fill -c 272c36 -i `readlink -f ~/.background-image`
|
||||
|
|
Loading…
Add table
Reference in a new issue