From 6b900b285632bcda7beefb6b185d72ef5b1f03cd Mon Sep 17 00:00:00 2001 From: Daniel Napora Date: Sat, 17 Feb 2024 09:21:42 +0100 Subject: [PATCH] mb-reset update --- bin/mb-reset | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/bin/mb-reset b/bin/mb-reset index 300682c..44b7551 100755 --- a/bin/mb-reset +++ b/bin/mb-reset @@ -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