update
parent
fd032ae41e
commit
398e669870
|
@ -22,7 +22,6 @@
|
||||||
printf "%b\n" "^sep(<small><i>${DIRECTORY:-/}</i></small>)"
|
printf "%b\n" "^sep(<small><i>${DIRECTORY:-/}</i></small>)"
|
||||||
printf "%b\n" " Otwórz w menadżerze plików,${JGMENU_RESOURCE_OPENER} \"${DIRECTORY:-/}\""
|
printf "%b\n" " Otwórz w menadżerze plików,${JGMENU_RESOURCE_OPENER} \"${DIRECTORY:-/}\""
|
||||||
printf "%b\n" " Otwórz w terminalu,terminator --working-directory=\"${DIRECTORY:-/}\""
|
printf "%b\n" " Otwórz w terminalu,terminator --working-directory=\"${DIRECTORY:-/}\""
|
||||||
printf "%b\n" "^sep()"
|
|
||||||
if [ ${#dirs[@]} -ne 0 ]; then
|
if [ ${#dirs[@]} -ne 0 ]; then
|
||||||
printf "%b\n" "^sep(Katalogi)"
|
printf "%b\n" "^sep(Katalogi)"
|
||||||
printf '%s\n' "${dirs[@]}"
|
printf '%s\n' "${dirs[@]}"
|
||||||
|
|
|
@ -87,7 +87,7 @@ arrow_string = ${ARROW_STRING:-⮞}
|
||||||
columns = ${COLUMNS:-1}
|
columns = ${COLUMNS:-1}
|
||||||
|
|
||||||
color_menu_bg = ${color_menu_bg:-#222222 80}
|
color_menu_bg = ${color_menu_bg:-#222222 80}
|
||||||
color_menu_border = ${COLOR_MENU_BORDER:-#2f9b85 100}
|
color_menu_border = ${color_menu_border:-#2f9b85 100}
|
||||||
color_norm_bg = ${color_norm_bg:-#000000 0}
|
color_norm_bg = ${color_norm_bg:-#000000 0}
|
||||||
color_norm_fg = ${color_norm_fg:-#CCCCCC 100}
|
color_norm_fg = ${color_norm_fg:-#CCCCCC 100}
|
||||||
color_sel_bg = ${color_sel_bg:-#169f6f 60}
|
color_sel_bg = ${color_sel_bg:-#169f6f 60}
|
||||||
|
@ -103,8 +103,10 @@ color_scroll_ind = ${COLOR_SCROLL_IND:-#504e65 100}
|
||||||
|
|
||||||
sep_markup = weight="bold" foreground="${color_title_fg% *}"
|
sep_markup = weight="bold" foreground="${color_title_fg% *}"
|
||||||
font = ${font:-Noto Sans Medium 9}
|
font = ${font:-Noto Sans Medium 9}
|
||||||
icon_size = ${ICON_SIZE:-0}
|
icon_size = ${ICON_SIZE:-0}
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
unset $font
|
||||||
}
|
}
|
||||||
|
|
||||||
#MENU GŁÓWNE
|
#MENU GŁÓWNE
|
||||||
|
@ -223,7 +225,6 @@ Menadżer schematów,mb-obthemes
|
||||||
|
|
||||||
^tag(weblinks)
|
^tag(weblinks)
|
||||||
^sep(Zasoby online)
|
^sep(Zasoby online)
|
||||||
^sep()
|
|
||||||
^sep(Mabox)
|
^sep(Mabox)
|
||||||
Mabox - pierwsze kroki,exo-open --launch WebBrowser https://pl.maboxlinux.org/przewodnik-uzytkownika/
|
Mabox - pierwsze kroki,exo-open --launch WebBrowser https://pl.maboxlinux.org/przewodnik-uzytkownika/
|
||||||
Forum Maboxa,exo-open --launch WebBrowser https://forum.maboxlinux.org/
|
Forum Maboxa,exo-open --launch WebBrowser https://forum.maboxlinux.org/
|
||||||
|
@ -235,7 +236,6 @@ Manjaro PL,exo-open --launch WebBrowser https://manjaro.pl
|
||||||
Forum Manjaro PL,exo-open --launch WebBrowser https://forum.manjaro.pl
|
Forum Manjaro PL,exo-open --launch WebBrowser https://forum.manjaro.pl
|
||||||
^sep(ArchLinux)
|
^sep(ArchLinux)
|
||||||
ArchWiki,exo-open --launch WebBrowser https://wiki.archlinux.org/
|
ArchWiki,exo-open --launch WebBrowser https://wiki.archlinux.org/
|
||||||
^sep()
|
|
||||||
^sep(Openbox)
|
^sep(Openbox)
|
||||||
^sep(Dokumentacja Tint2)
|
^sep(Dokumentacja Tint2)
|
||||||
^sep(Dokumentacja Conky)
|
^sep(Dokumentacja Conky)
|
||||||
|
@ -253,7 +253,8 @@ trap "rm -f ${CONFIG_FILE} ${MENU_ITEMS}" EXIT
|
||||||
|
|
||||||
MENU_HEIGHT_MIN=$(xdpyinfo | awk '/^ +dimensions/ {print $2}' | cut -d 'x' -f2)
|
MENU_HEIGHT_MIN=$(xdpyinfo | awk '/^ +dimensions/ {print $2}' | cut -d 'x' -f2)
|
||||||
JGWIDTH=250
|
JGWIDTH=250
|
||||||
ITEM_HEIGHT="18"
|
ITEM_HEIGHT=20
|
||||||
|
MENU_PADDING_TOP=70
|
||||||
mkconfigfile
|
mkconfigfile
|
||||||
|
|
||||||
cat <<EOF > ${MENU_ITEMS}
|
cat <<EOF > ${MENU_ITEMS}
|
||||||
|
@ -278,7 +279,6 @@ cat <<EOF > ${MENU_ITEMS}
|
||||||
$(basename $(xdg-user-dir PICTURES)),^pipe(jgbrowser $(xdg-user-dir PICTURES))
|
$(basename $(xdg-user-dir PICTURES)),^pipe(jgbrowser $(xdg-user-dir PICTURES))
|
||||||
$(basename $(xdg-user-dir VIDEOS)),^pipe(jgbrowser $(xdg-user-dir VIDEOS))
|
$(basename $(xdg-user-dir VIDEOS)),^pipe(jgbrowser $(xdg-user-dir VIDEOS))
|
||||||
#^sep(Zakładki)
|
#^sep(Zakładki)
|
||||||
^sep()
|
|
||||||
|
|
||||||
$(gtkbookmarks)
|
$(gtkbookmarks)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue