7 lines
124 B
Bash
Executable File
7 lines
124 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
if command -v lookandfeeltool; then
|
|
lookandfeeltool -a org.kde.breeze.desktop
|
|
fi
|