mb-reset update

master
Daniel Napora 2024-02-17 09:21:42 +01:00
parent 155f92c6b1
commit 6b900b2856
1 changed files with 0 additions and 14 deletions

View File

@ -18,7 +18,6 @@
#: bashrc - bash config file (~/.bashrc)
#: terminator - terminator config
#: conky - overwrite conky config files in ~/.config/conky/
#: glyphicons - override font settings for glyphicons
#: 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)
@ -26,7 +25,6 @@
#: rightpanel - right panel custom commands
#: allmenus - overvrite all menus, panels and exit dialog
#: logout - logout dialog
#: wrappers - nitrogen, xrandr and lxappearance Mabox wrappers
@ -112,12 +110,6 @@ __logout() {
rsync -a /usr/share/mabox/lang/$LNGDIR/.config/mabox/exit.csv $HOME/.config/mabox/
}
__glyphicons () {
rm $HOME/.local/share/fonts/lucide.ttf
mkdir -p $HOME/.config/fontconfig/conf.d
rsync -a /usr/share/mabox/common/66-symbols.conf $HOME/.config/fontconfig/conf.d/
fc-cache
}
__tint2() {
mkdir -p $HOME/.config/fontconfig/conf.d
@ -172,10 +164,6 @@ __terminator() {
rsync -a /usr/share/mabox/common/terminator/* $HOME/.config/terminator/
}
__wrappers() {
rm $HOME/bin/nitrogen
rsync -a /usr/share/mabox/common/wrappers/* $HOME/.local/bin/
}
case "$1" in
-c|check) __compare "$2";;
@ -184,7 +172,6 @@ case "$1" in
"leftpanel") __leftpanel ;;
"rightpanel") __rightpanel ;;
"logout") __logout ;;
"glyphicons") __glyphicons ;;
"tint2") __tint2 ;;
"jgthemes") __jgthemes ;;
"conky") __conky ;;
@ -193,7 +180,6 @@ case "$1" in
"obautostart") __obautostart ;;
"bashrc") __bashrc ;;
"terminator") __terminator ;;
"wrappers") __wrappers ;;
"-h|--help") __usage ;;
*) __usage ;;
esac