changed to setup script to /etc/skel

This commit is contained in:
[yuri]
2025-12-11 17:25:19 +01:00
parent d47bcdcc7d
commit e4215430ef
542 changed files with 128 additions and 878 deletions

View File

@@ -0,0 +1,22 @@
#!/usr/bin/env bash
# -----------------------------------------------------
# Load Launcher
# -----------------------------------------------------
launcher=$(cat $HOME/.config/ml4w/settings/launcher)
# Use Walker
_launch_walker() {
$HOME/.config/walker/launch.sh --height 500
}
# Use Rofi
_launch_rofi() {
pkill rofi || rofi -show drun -replace -i
}
if [ "$launcher" == "walker" ]; then
_launch_walker
else
_launch_rofi
fi