General code cleanup and removed some unnecessary imports.
This commit is contained in:
parent
5183cbd78f
commit
8d1e5f8172
1
bb.c
1
bb.c
@ -1304,7 +1304,6 @@ int main(int argc, char *argv[])
|
||||
init_term();
|
||||
bb_browse(&bb, full_initial_path);
|
||||
fputs(T_LEAVE_BBMODE, tty_out);
|
||||
cleanup();
|
||||
|
||||
if (bb.selected && print_selection) {
|
||||
for (entry_t *e = bb.selected; e; e = e->selected.next) {
|
||||
|
42
bb.h
42
bb.h
@ -5,7 +5,6 @@
|
||||
*
|
||||
* This file contains definitions and customization for `bb`.
|
||||
*/
|
||||
#include <dirent.h>
|
||||
#include <fcntl.h>
|
||||
#include <glob.h>
|
||||
#include <limits.h>
|
||||
@ -13,14 +12,11 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <sys/dir.h>
|
||||
#include <sys/errno.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/wait.h>
|
||||
#include <termios.h>
|
||||
#include <time.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "bterm.h"
|
||||
@ -32,11 +28,29 @@
|
||||
#define PATH_MAX 4096
|
||||
#endif
|
||||
|
||||
#define BB_TIME_FMT " %T %D "
|
||||
#define MAX_COLS 12
|
||||
#define MAX_SORT (2*MAX_COLS)
|
||||
#define HASH_SIZE 1024
|
||||
#define HASH_MASK (HASH_SIZE - 1)
|
||||
#define MAX_BINDINGS 1024
|
||||
|
||||
// Configurable options:
|
||||
#define BB_TIME_FMT " %T %D "
|
||||
#define SCROLLOFF MIN(5, (winsize.ws_row-4)/2)
|
||||
#define SORT_INDICATOR "↓"
|
||||
#define RSORT_INDICATOR "↑"
|
||||
#define SELECTED_INDICATOR " \033[31;7m \033[0m"
|
||||
#define NOT_SELECTED_INDICATOR " "
|
||||
// Colors (using ANSI escape sequences):
|
||||
#define TITLE_COLOR "\033[37;1m"
|
||||
#define NORMAL_COLOR "\033[37m"
|
||||
#define CURSOR_COLOR "\033[43;30;1m"
|
||||
#define LINK_COLOR "\033[35m"
|
||||
#define DIR_COLOR "\033[34m"
|
||||
#define EXECUTABLE_COLOR "\033[31m"
|
||||
#define SCROLLBAR_FG "\033[48;5;247m "
|
||||
#define SCROLLBAR_BG "\033[48;5;239m "
|
||||
|
||||
#define MAX(a,b) ((a) < (b) ? (b) : (a))
|
||||
#define MIN(a,b) ((a) > (b) ? (b) : (a))
|
||||
#define IS_SELECTED(p) (((p)->selected.atme) != NULL)
|
||||
@ -156,24 +170,6 @@ typedef struct proc_s {
|
||||
} running;
|
||||
} proc_t;
|
||||
|
||||
// Configurable options:
|
||||
#define SCROLLOFF MIN(5, (winsize.ws_row-4)/2)
|
||||
#define SORT_INDICATOR "↓"
|
||||
#define RSORT_INDICATOR "↑"
|
||||
#define SELECTED_INDICATOR " \033[31;7m \033[0m"
|
||||
#define NOT_SELECTED_INDICATOR " "
|
||||
// Colors (using ANSI escape sequences):
|
||||
#define TITLE_COLOR "\033[37;1m"
|
||||
#define NORMAL_COLOR "\033[37m"
|
||||
#define CURSOR_COLOR "\033[43;30;1m"
|
||||
#define LINK_COLOR "\033[35m"
|
||||
#define DIR_COLOR "\033[34m"
|
||||
#define EXECUTABLE_COLOR "\033[31m"
|
||||
#define SCROLLBAR_FG "\033[48;5;247m "
|
||||
#define SCROLLBAR_BG "\033[48;5;239m "
|
||||
|
||||
#define MAX_BINDINGS 1024
|
||||
|
||||
static binding_t bindings[MAX_BINDINGS];
|
||||
|
||||
#include "columns.h"
|
||||
|
22
columns.h
22
columns.h
@ -66,57 +66,57 @@ static void timeago(char *buf, time_t t)
|
||||
sprintf(buf, "%d years", (int)delta/YEAR);
|
||||
}
|
||||
|
||||
void col_mreltime(entry_t *entry, const char *color, char *buf, int width) {
|
||||
static void col_mreltime(entry_t *entry, const char *color, char *buf, int width) {
|
||||
(void)color;
|
||||
timeago(buf, entry->info.st_mtime);
|
||||
lpad(buf, width);
|
||||
}
|
||||
|
||||
void col_areltime(entry_t *entry, const char *color, char *buf, int width) {
|
||||
static void col_areltime(entry_t *entry, const char *color, char *buf, int width) {
|
||||
(void)color;
|
||||
timeago(buf, entry->info.st_atime);
|
||||
lpad(buf, width);
|
||||
}
|
||||
|
||||
void col_creltime(entry_t *entry, const char *color, char *buf, int width) {
|
||||
static void col_creltime(entry_t *entry, const char *color, char *buf, int width) {
|
||||
(void)color;
|
||||
timeago(buf, entry->info.st_ctime);
|
||||
lpad(buf, width);
|
||||
}
|
||||
|
||||
void col_mtime(entry_t *entry, const char *color, char *buf, int width) {
|
||||
static void col_mtime(entry_t *entry, const char *color, char *buf, int width) {
|
||||
(void)color;
|
||||
strftime(buf, (size_t)width, BB_TIME_FMT, localtime(&(entry->info.st_mtime)));
|
||||
}
|
||||
|
||||
void col_atime(entry_t *entry, const char *color, char *buf, int width) {
|
||||
static void col_atime(entry_t *entry, const char *color, char *buf, int width) {
|
||||
(void)color;
|
||||
strftime(buf, (size_t)width, BB_TIME_FMT, localtime(&(entry->info.st_atime)));
|
||||
}
|
||||
|
||||
void col_ctime(entry_t *entry, const char *color, char *buf, int width) {
|
||||
static void col_ctime(entry_t *entry, const char *color, char *buf, int width) {
|
||||
(void)color;
|
||||
strftime(buf, (size_t)width, BB_TIME_FMT, localtime(&(entry->info.st_ctime)));
|
||||
}
|
||||
|
||||
void col_selected(entry_t *entry, const char *color, char *buf, int width) {
|
||||
static void col_selected(entry_t *entry, const char *color, char *buf, int width) {
|
||||
(void)width;
|
||||
buf = stpcpy(buf, IS_SELECTED(entry) ? SELECTED_INDICATOR : NOT_SELECTED_INDICATOR);
|
||||
buf = stpcpy(buf, color);
|
||||
}
|
||||
|
||||
void col_perm(entry_t *entry, const char *color, char *buf, int width) {
|
||||
static void col_perm(entry_t *entry, const char *color, char *buf, int width) {
|
||||
(void)color; (void)width;
|
||||
sprintf(buf, " %03o", entry->info.st_mode & 0777);
|
||||
}
|
||||
|
||||
void col_random(entry_t *entry, const char *color, char *buf, int width)
|
||||
static void col_random(entry_t *entry, const char *color, char *buf, int width)
|
||||
{
|
||||
(void)color;
|
||||
sprintf(buf, "%*d", width, entry->shufflepos);
|
||||
}
|
||||
|
||||
void col_size(entry_t *entry, const char *color, char *buf, int width)
|
||||
static void col_size(entry_t *entry, const char *color, char *buf, int width)
|
||||
{
|
||||
(void)color; (void)width;
|
||||
int j = 0;
|
||||
@ -129,7 +129,7 @@ void col_size(entry_t *entry, const char *color, char *buf, int width)
|
||||
sprintf(buf, " %6.*f%c ", j > 0 ? 1 : 0, bytes, units[j]);
|
||||
}
|
||||
|
||||
void col_name(entry_t *entry, const char *color, char *buf, int width)
|
||||
static void col_name(entry_t *entry, const char *color, char *buf, int width)
|
||||
{
|
||||
(void)width;
|
||||
if (entry->no_esc) buf = stpcpy(buf, entry->name);
|
||||
|
Loading…
Reference in New Issue
Block a user