6 lines
135 B
Bash
Executable File
6 lines
135 B
Bash
Executable File
#!/bin/bash
|
|
if grep -q "eco_mode=1" /proc/cmdline; then
|
|
swaybg -c 000000 &
|
|
else
|
|
swaybg -i ~/Pictures/wallpaper.jpg -m fill &
|
|
fi |