Compare commits

..

No commits in common. "bee49ee7dc9c20edad5e2e7f74496e303de78a73" and "6e573ab99279503eb8de48afcf564661f4fabf2a" have entirely different histories.

2 changed files with 1 additions and 13 deletions

View File

@ -33,9 +33,6 @@ $(OBJ_PATH)/%.o: $(SRC_PATH)/%.cpp
$(CPPC) $(CPPC_FLAGS) -c $< -o $@ $(CPPC) $(CPPC_FLAGS) -c $< -o $@
install:
@install -vpm 755 -o root -g root $(BIN_PATH)/bakatui /usr/bin/
clean: clean:
rm -fr build rm -fr build

View File

@ -16,7 +16,7 @@
#include <vector> #include <vector>
using nlohmann::json; using nlohmann::json;
#define BOTTOM_PADDING 5 #define BOTTOM_PADDING 3
#define DEFAULT_OFFSET 3 #define DEFAULT_OFFSET 3
@ -246,10 +246,6 @@ void timetable_page() {
wattroff(selector_windows[i], COLOR_PAIR(COLOR_RED)); wattroff(selector_windows[i], COLOR_PAIR(COLOR_RED));
} }
} }
attron(COLOR_PAIR(COLOR_BLUE));
mvprintw(LINES - 2, 0,
"Arrows/hjkl to select | ENTER to show info | F1 to exit");
attroff(COLOR_PAIR(COLOR_BLUE));
update_panels(); update_panels();
doupdate(); doupdate();
@ -406,11 +402,6 @@ void timetable_page() {
mvwaddwstr(infobox_window, 6, 1, Theme.c_str()); mvwaddwstr(infobox_window, 6, 1, Theme.c_str());
wattroff(infobox_window, COLOR_PAIR(COLOR_CYAN)); wattroff(infobox_window, COLOR_PAIR(COLOR_CYAN));
wattron(infobox_window, COLOR_PAIR(COLOR_BLUE));
mvwaddstr(infobox_window, getmaxy(infobox_window) - 2, 1,
"Press any key to close");
wattroff(infobox_window, COLOR_PAIR(COLOR_BLUE));
top_panel(infobox_panel); top_panel(infobox_panel);
update_panels(); update_panels();
doupdate(); doupdate();