mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2026-04-14 13:19:09 +02:00
12 lines
245 B
Nix
12 lines
245 B
Nix
{ name, writeShellApplication, sway, ... }:
|
|
writeShellApplication {
|
|
inherit name;
|
|
runtimeInputs = [ sway ];
|
|
text = ''
|
|
if swaymsg opacity plus 0.01 -q; then
|
|
swaymsg opacity 1
|
|
else
|
|
swaymsg opacity 0.95
|
|
fi
|
|
'';
|
|
}
|