X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcore%2Ffunctions.sh;h=0ca25cde6ecc5945f755ec54021ae29b58a1325b;hb=a5bb115313d0e3fc896b0b5a6746f3900ab999fb;hp=b99c1034904492bd36e71e36c15cb3b9a72d042c;hpb=1a64085683a99b940156fdf19ed277ca08bf6545;p=feisty_meow.git diff --git a/scripts/core/functions.sh b/scripts/core/functions.sh index b99c1034..0ca25cde 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -244,8 +244,15 @@ if [ -z "$skip_all" ]; then done } - function fix_alsa() { - sudo /etc/init.d/alsasound restart +# function fix_alsa() { +# sudo /etc/init.d/alsasound restart +# } + + function screen() { + save_terminal_title +#hmmm: ugly absolute path here. + /usr/bin/screen $* + restore_terminal_title } # switches from a /X/path form to an X:/ form. this also processes cygwin paths. @@ -315,22 +322,19 @@ if [ -z "$skip_all" ]; then # or at least suse doesn't, which is the other one we've tested on. /bin/su -l $* fi - -#NO! # relabel the console after returning. -#NO! bash $FEISTY_MEOW_SCRIPTS/tty/label_terminal_with_infos.sh -# fix this to set the old title back in place! - } # sudo function wraps the normal sudo by ensuring we replace the terminal # label if they're doing an su with the sudo. function sudo() { - local first_command="$1" +# local first_command="$1" + save_terminal_title /usr/bin/sudo "$@" - if [ "$first_command" == "su" ]; then - # yep, they were doing an su, but they're back now. - bash $FEISTY_MEOW_SCRIPTS/tty/label_terminal_with_infos.sh - fi + restore_terminal_title +# if [ "$first_command" == "su" ]; then +# # yep, they were doing an su, but they're back now. +# label_terminal_with_info +# fi } # trashes the .#blah files that cvs and svn leave behind when finding conflicts. @@ -356,6 +360,7 @@ if [ -z "$skip_all" ]; then # recreates all the generated files that the feisty meow scripts use. function regenerate() { # do the bootstrapping process again. + save_terminal_title echo "regenerating feisty meow script environment." bash $FEISTY_MEOW_SCRIPTS/core/reconfigure_feisty_meow.sh echo @@ -367,6 +372,7 @@ if [ -z "$skip_all" ]; then source $FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh # run nechung oracle to give user a new fortune. nechung + restore_terminal_title } # copies a set of custom scripts into the proper location for feisty meow @@ -378,6 +384,9 @@ if [ -z "$skip_all" ]; then # use our default example user if there was no name provided. user=fred fi + + save_terminal_title + if [ ! -d "$FEISTY_MEOW_APEX/customize/$user" ]; then echo "The customization folder provided for $user should be:" echo " '$FEISTY_MEOW_APEX/customize/$user'" @@ -405,6 +414,8 @@ if [ -z "$skip_all" ]; then fi echo regenerate + + restore_terminal_title } # generates a random password where the first parameter is the number of characters