diff --git a/bin/mb-reset b/bin/mb-reset index 44b7551..2c008ea 100755 --- a/bin/mb-reset +++ b/bin/mb-reset @@ -16,6 +16,7 @@ #: obrcxml - rc.xml default OpenBox configuration file #: obautostart - default autostart file #: bashrc - bash config file (~/.bashrc) +#: picom - install/override new picom config with animations #: terminator - terminator config #: conky - overwrite conky config files in ~/.config/conky/ #: tint2 - overwrite tint2 panel config files in ~/.config/tint2/ @@ -77,7 +78,6 @@ mb-setvar places_conkypipe=true mb-setvar places_tint2pipe=true mb-setvar places_jgdesktops=true mb-setvar places_jgdeskmngr=true -mb-setvar places_jgdeskgrid=true mb-setvar places_softwarepipe=true } @@ -97,7 +97,6 @@ mb-setvar places_sshpipe=true mb-setvar places_conkypipe=true mb-setvar places_tint2pipe=true mb-setvar places_jgdesktops=true -mb-setvar places_jgdeskmngr=true mb-setvar places_jgdeskgrid=true mb-setvar places_softwarepipe=true } @@ -164,23 +163,29 @@ __terminator() { rsync -a /usr/share/mabox/common/terminator/* $HOME/.config/terminator/ } +__picom() { +mkdir -p $HOME/.config/picom/include +rsync -a /usr/share/mabox/picom/include/* $HOME/.config/picom/include/ +rsync -a /usr/share/mabox/picom/configs/mabox-jaskier.conf $HOME/.config/picom/configs/ +} case "$1" in -c|check) __compare "$2";; - "allmenus") __allmenus ;; - "mainmenu") __mainmenu ;; - "leftpanel") __leftpanel ;; - "rightpanel") __rightpanel ;; - "logout") __logout ;; - "tint2") __tint2 ;; - "jgthemes") __jgthemes ;; - "conky") __conky ;; - "maboxthemes") __maboxthemes ;; - "obrcxml") __obrcxml ;; - "obautostart") __obautostart ;; - "bashrc") __bashrc ;; - "terminator") __terminator ;; - "-h|--help") __usage ;; + allmenus) __allmenus ;; + mainmenu) __mainmenu ;; + leftpanel) __leftpanel ;; + rightpanel) __rightpanel ;; + logout) __logout ;; + tint2) __tint2 ;; + jgthemes) __jgthemes ;; + conky) __conky ;; + maboxthemes) __maboxthemes ;; + obrcxml) __obrcxml ;; + obautostart) __obautostart ;; + bashrc) __bashrc ;; + terminator) __terminator ;; + picom) __picom ;; + -h|--help) __usage ;; *) __usage ;; esac