feat: export plugins under new names

This commit is contained in:
imgurbot12 2023-08-14 17:42:50 -07:00
parent 194398d861
commit ff88a5c042
2 changed files with 9 additions and 9 deletions

View File

@ -18,10 +18,10 @@ install: build deploy
deploy:
mkdir -p ${DEST}
cp -vf ./target/release/rmenu ${INSTALL}/rmenu
cp -vf ./target/release/desktop ${DEST}/drun
cp -vf ./target/release/run ${DEST}/run
cp -vf ./target/release/audio ${DEST}/audio
cp -vf ./target/release/rmenu-network ${DEST}/network
cp -vf ./target/release/desktop ${DEST}/rmenu-desktop
cp -vf ./target/release/run ${DEST}/rmenu-run
cp -vf ./target/release/audio ${DEST}/rmenu-audio
cp -vf ./target/release/network ${DEST}/rmenu-network
cp -vf ./rmenu/public/config.yaml ${DEST}/config.yaml
build: build-rmenu build-plugins
@ -33,4 +33,4 @@ build-plugins:
${CARGO} build -p run ${FLAGS}
${CARGO} build -p desktop ${FLAGS}
${CARGO} build -p audio ${FLAGS}
${CARGO} build -p rmenu-network ${FLAGS}
${CARGO} build -p network ${FLAGS}

View File

@ -20,17 +20,17 @@ window:
# configured plugin settings
plugins:
run:
exec: ["~/.config/rmenu/run"]
exec: ["~/.config/rmenu/rmenu-run"]
cache: 300
drun:
exec: ["~/.config/rmenu/drun"]
exec: ["~/.config/rmenu/rmenu-desktop"]
cache: onlogin
audio:
exec: ["~/.config/rmenu/audio"]
exec: ["~/.config/rmenu/rmenu-audio"]
cache: false
placeholder: "Select an Audio Sink"
network:
exec: ["~/.config/rmenu/network"]
exec: ["~/.config/rmenu/rmenu-network"]
cache: false
placeholder: "Connect to the Specified Wi-Fi"