update
parent
589f29c4c1
commit
bc93aaf397
|
@ -576,12 +576,12 @@ cat <<EOF > ${MENU_ITEMS}
|
|||
|
||||
$(gtkbookmarks)
|
||||
$pipesep
|
||||
$menusettingspipe
|
||||
$tint2pipe
|
||||
$sysinfopipe
|
||||
$keyspipe
|
||||
$sshpipe
|
||||
$softwarepipe
|
||||
$menusettingspipe
|
||||
$tint2pipe
|
||||
|
||||
${vboxes}
|
||||
. $HOME/.config/mabox/places-append.csv
|
||||
|
|
13
bin/mb-reset
13
bin/mb-reset
|
@ -1,18 +1,18 @@
|
|||
#!/bin/bash
|
||||
# Daniel Napora 2021 <napcok@gmail.com>
|
||||
#: mb-reset - reset user config files to current defaults. It only affects files shipped with Mabox.
|
||||
#: mb-reset - reset/update user config files to current defaults. It only affects files shipped with Mabox.
|
||||
#: Usage: mb-reset option
|
||||
#:
|
||||
#: Options:
|
||||
#: tint2 - overwrite tint2 panel configs in ~/.config/tint2/
|
||||
#: tint2 - overwrite tint2 panel config files in ~/.config/tint2/
|
||||
#: jgthemes - overwrite menu/sidepanels color schemes in ~/.config/mabox/jgobthemes/
|
||||
#: mainmenu - overwrite main menu files (favorites.csv)
|
||||
#: leftpanel - left panel custom commands
|
||||
#: rightpanel - right panel custom commands
|
||||
#: logout - logout dialog
|
||||
#: obrcxml - rc.xml default OpenBox configuration file
|
||||
#: obautorstart - default autostart file
|
||||
#:
|
||||
#: obautostart - default autostart file
|
||||
#: conky - overwrite conky config files in ~/.config/conky/
|
||||
|
||||
case $LANG in
|
||||
pl*) LNGDIR="pl";;
|
||||
|
@ -64,8 +64,9 @@ __jgthemes() {
|
|||
rsync -a /usr/share/mb-jgtools/jgobthemes/* $HOME/.config/mabox/jgobthemes/
|
||||
}
|
||||
|
||||
__conkies() {
|
||||
__conky() {
|
||||
echo "Not implemented yet"
|
||||
rsync -a /usr/share/mabox/lang/$LNGDIR/.config/conky/*conkyrc $HOME/.config/conky/
|
||||
}
|
||||
|
||||
__maboxthemes() {
|
||||
|
@ -88,7 +89,7 @@ case "$1" in
|
|||
"logout") __logout ;;
|
||||
"tint2") __tint2 ;;
|
||||
"jgthemes") __jgthemes ;;
|
||||
"conkies") __conkies ;;
|
||||
"conky") __conky ;;
|
||||
"maboxthemes") __maboxthemes ;;
|
||||
"obrcxml") __obrcxml ;;
|
||||
"obautostart") __obautostart ;;
|
||||
|
|
Loading…
Reference in New Issue