refractoring

This commit is contained in:
nova 2025-03-03 15:45:26 +01:00
parent abf758cdbf
commit 02d469948e

5
main.c
View File

@ -11,6 +11,7 @@ unsigned int terminal_width;
unsigned int temp_heigth = 0; //used for screen refresh unsigned int temp_heigth = 0; //used for screen refresh
unsigned int temp_width = 0; unsigned int temp_width = 0;
unsigned int settings; unsigned int settings;
unsigned int file_modifiers;
unsigned int status; //bit 0 = enable unsigned int status; //bit 0 = enable
char **content_l; //content of parent dir, used in left window char **content_l; //content of parent dir, used in left window
char **content_m; //content of current dir, used in main window char **content_m; //content of current dir, used in main window
@ -27,7 +28,7 @@ int main() {
WINDOW *winl = newwin(terminal_height, terminal_width/3, terminal_height, (terminal_width/3)); WINDOW *winl = newwin(terminal_height, terminal_width/3, terminal_height, (terminal_width/3));
WINDOW *winm = newwin(terminal_height, terminal_width/3, 0, 0); WINDOW *winm = newwin(terminal_height, terminal_width/3, 0, 0);
WINDOW *winr = newwin(terminal_height, terminal_width/3, terminal_height, ((terminal_width/3)*2)); WINDOW *winr = newwin(terminal_height, terminal_width/3, terminal_height, ((terminal_width/3)*2));
settings ^= SETTINGS_HIDDEN_FILES; file_modifiers ^= FILE_MODIFIERS_HIDDEN_FILES;
status ^= STATUS_RUN_BACKEND; status ^= STATUS_RUN_BACKEND;
char input = 0; char input = 0;
@ -67,7 +68,7 @@ int main() {
if ((input = getch())) { if ((input = getch())) {
user_interactions(&input, &status, &settings); user_interactions(&input, &status, &settings, &file_modifiers);
} }
} }
free(content_l); free(content_l);