Set lines to 18
This commit is contained in:
parent
0319c79016
commit
c6011c6fd6
|
@ -30,5 +30,5 @@ function load_theme() {
|
|||
}
|
||||
|
||||
load_theme
|
||||
command_run=$(echo > /dev/null | dmenu -i -nb "${NBCOLOR}" -nf "${NFCOLOR}" -sb "${SBCOLOR}" -sf "${SFCOLOR}" -p " command:")
|
||||
command_run=$(echo > /dev/null | dmenu -i -nb "${NBCOLOR}" -nf "${NFCOLOR}" -sb "${SBCOLOR}" -sf "${SFCOLOR}" -l 18 -p " command:")
|
||||
${command_run}
|
||||
|
|
|
@ -93,7 +93,7 @@ fi
|
|||
|
||||
load_theme
|
||||
create_list_files
|
||||
list_output=$(list_desktop_icons | dmenu -i -nb "${NBCOLOR}" -nf "${NFCOLOR}" -sb "${SBCOLOR}" -sf "${SFCOLOR}" -p " drun:")
|
||||
list_output=$(list_desktop_icons | dmenu -i -nb "${NBCOLOR}" -nf "${NFCOLOR}" -sb "${SBCOLOR}" -sf "${SFCOLOR}" -l 18 -p " drun:")
|
||||
run_output=$(echo ${list_output} | cut -c 5-999)
|
||||
if [ "${run_output}" == "Scan New Desktop Files" ] ; then
|
||||
echo "0" > ${HOME}/.dmenu/read_list
|
||||
|
|
|
@ -66,7 +66,7 @@ function remove_icon() {
|
|||
load_theme
|
||||
file=1
|
||||
while [ "${file}" ]; do
|
||||
file_icon=$(show_icon_tree | dmenu -i -nb "${NBCOLOR}" -nf "${NFCOLOR}" -sb "${SBCOLOR}" -sf "${SFCOLOR}" -p " filebrowser: $(basename $(pwd))")
|
||||
file_icon=$(show_icon_tree | dmenu -i -nb "${NBCOLOR}" -nf "${NFCOLOR}" -sb "${SBCOLOR}" -sf "${SFCOLOR}" -l 18 -p " filebrowser: $(basename $(pwd))")
|
||||
file=$(remove_icon "${file_icon}")
|
||||
echo "# ${file} #"
|
||||
if [ -e "${file}" ]; then
|
||||
|
|
|
@ -56,6 +56,6 @@ function list_binaries_icons() {
|
|||
}
|
||||
|
||||
load_theme
|
||||
list_output=$(list_binaries_icons | dmenu -i -nb "${NBCOLOR}" -nf "${NFCOLOR}" -sb "${SBCOLOR}" -sf "${SFCOLOR}" -p " run:")
|
||||
list_output=$(list_binaries_icons | dmenu -i -nb "${NBCOLOR}" -nf "${NFCOLOR}" -sb "${SBCOLOR}" -sf "${SFCOLOR}" -l 18 -p " run:")
|
||||
run_output=$(echo "${list_output}" | cut -c4-999)
|
||||
${run_output}
|
||||
|
|
|
@ -193,7 +193,7 @@ function remove_icon() {
|
|||
}
|
||||
|
||||
function load_theme_selector() {
|
||||
file_icon=$(show_icon_tree | dmenu -i -nb "${NBCOLOR}" -nf "${NFCOLOR}" -sb "${SBCOLOR}" -sf "${SFCOLOR}" -p " Theme:")
|
||||
file_icon=$(show_icon_tree | dmenu -i -nb "${NBCOLOR}" -nf "${NFCOLOR}" -sb "${SBCOLOR}" -sf "${SFCOLOR}" -l 18 -p " Theme:")
|
||||
file=$(remove_icon "${file_icon}")
|
||||
if [ -z "${file}" ] ; then
|
||||
echo "# Theme selector canceled"
|
||||
|
@ -208,4 +208,3 @@ function load_theme_selector() {
|
|||
load_theme
|
||||
load_themes_files
|
||||
load_theme_selector
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ function list_applications_icons() {
|
|||
}
|
||||
|
||||
load_theme
|
||||
list_output=$(list_applications_icons | dmenu -i -nb "${NBCOLOR}" -nf "${NFCOLOR}" -sb "${SBCOLOR}" -sf "${SFCOLOR}" -p " window:")
|
||||
list_output=$(list_applications_icons | dmenu -i -nb "${NBCOLOR}" -nf "${NFCOLOR}" -sb "${SBCOLOR}" -sf "${SFCOLOR}" -l 18 -p " window:")
|
||||
run_output=$(echo ${list_output} | cut -c 4-999)
|
||||
if [ "${run_output}" == "gimp" ] ; then
|
||||
xdotool search --onlyvisible -classname "${run_output}" windowactivate &> /dev/null
|
||||
|
|
Loading…
Reference in New Issue
Block a user