dmenu-scripts/dmenu_wrun

67 lines
2.0 KiB
Plaintext
Raw Permalink Normal View History

2022-05-29 15:49:43 +02:00
#!/bin/bash
################################################################
# dmenu_wrun - dmenu script that simulates 'rofi -show window' #
# #
# Author: q3aql <q3aql@duck.com> #
2022-11-20 12:28:18 +01:00
# Last update: 20-11-2022 #
2022-05-29 15:49:43 +02:00
################################################################
2022-07-10 16:21:44 +02:00
# Configuration variables
load_theme_path="${HOME}/.dmenu"
load_themes="${load_theme_path}/themes"
load_theme_file="${load_theme_path}/load_theme"
function load_theme() {
if [ -f "${load_theme_file}" ] ; then
source "${load_theme_file}"
else
mkdir -p "${load_theme_path}"
mkdir -p "${load_themes}"
echo "#!/bin/bash" > ${load_theme_file}
echo "" >> ${load_theme_file}
echo "NFCOLOR=\"#bbbbbb\"" >> ${load_theme_file}
echo "NBCOLOR=\"#1f1f35\"" >> ${load_theme_file}
echo "SFCOLOR=\"#eeeeee\"" >> ${load_theme_file}
echo "SBCOLOR=\"#664477\"" >> ${load_theme_file}
source "${load_theme_file}"
fi
}
2022-11-20 12:28:18 +01:00
function generate_spaces() {
num_spaces=${1}
count_spaces=1
while [ ${count_spaces} -le ${num_spaces} ] ; do
echo -n " "
count_spaces=$(expr ${count_spaces} + 1)
done
}
function check_wmctrl() {
wmctrl -h &> /dev/null
error=$?
if [ ${error} -ne 0 ] ; then
echo " Error: You need install 'wmctrl'" | dmenu -i -nb "${NBCOLOR}" -nf "${NFCOLOR}" -sb "${SBCOLOR}" -sf "${SFCOLOR}" -l 18 -p " window:"
exit
fi
2022-05-29 15:49:43 +02:00
}
2022-07-10 16:21:44 +02:00
function list_applications_icons() {
wmctrl -l | while read current_app ; do
2022-05-29 15:49:43 +02:00
echo " ${current_app}"
done
2022-11-20 12:28:18 +01:00
generate_spaces 75
2022-05-29 15:49:43 +02:00
}
2022-07-10 16:21:44 +02:00
load_theme
check_wmctrl
2022-07-14 00:35:21 +02:00
list_output=$(list_applications_icons | dmenu -i -nb "${NBCOLOR}" -nf "${NFCOLOR}" -sb "${SBCOLOR}" -sf "${SFCOLOR}" -l 18 -p " window:")
2022-07-16 12:04:48 +02:00
run_output=$(echo ${list_output} | cut -c 5-999)
echo "# Selected: ${run_output}"
run_output=$(echo "${run_output}" | cut -d " " -f 1)
2022-07-16 12:04:48 +02:00
if [ -z "${run_output}" ] ; then
echo "# Selection window canceled"
2022-05-29 15:49:43 +02:00
else
wmctrl -ia "${run_output}" &> /dev/null
2022-05-29 15:49:43 +02:00
fi