1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-12-06 20:46:34 +01:00

implement avatars (setting only) and generalize path tab-complete

This commit is contained in:
Jfreegman
2014-09-26 03:10:44 -04:00
parent cee9e624b8
commit 544c402f78
17 changed files with 169 additions and 29 deletions

View File

@@ -56,6 +56,7 @@
#include "notify.h"
#include "device.h"
#include "message_queue.h"
#include "execute.h"
#ifdef AUDIO
#include "audio_call.h"
@@ -1004,7 +1005,7 @@ int main(int argc, char *argv[])
Tox *m = init_tox();
if (m == NULL)
exit_toxic_err("failed in main", FATALERR_NETWORKINIT);
exit_toxic_err("failed in main", FATALERR_NETWORKINIT);
if (!arg_opts.ignore_data_file) {
if (arg_opts.encrypt_data && !datafile_exists)
@@ -1061,6 +1062,10 @@ int main(int argc, char *argv[])
print_init_messages(prompt);
cleanup_init_messages();
char avatarstr[MAX_STR_SIZE];
snprintf(avatarstr, sizeof(avatarstr), "/avatar \"%s\"", user_settings->avatar_path);
execute(prompt->chatwin->history, prompt, m, avatarstr, GLOBAL_COMMAND_MODE);
uint64_t last_save = (uint64_t) time(NULL);
uint64_t looptimer = last_save;
useconds_t msleepval = 40000;