11 lines
183 B
Plaintext
11 lines
183 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
cat > battery-status-toggle.service << EOU
|
||
|
[Unit]
|
||
|
Description=Notify when battery status changes
|
||
|
|
||
|
[Service]
|
||
|
Type=oneshot
|
||
|
ExecStart=${PREFIX}/battery-status-toggle.sh
|
||
|
EOU
|