mirror of https://github.com/cutefishos/terminal
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
218 B
C
12 lines
218 B
C
|
5 years ago
|
#ifndef TOOLS_H
|
||
|
|
#define TOOLS_H
|
||
|
|
|
||
|
|
#include <QString>
|
||
|
|
#include <QStringList>
|
||
|
|
|
||
|
|
QString get_kb_layout_dir();
|
||
|
|
void add_custom_color_scheme_dir(const QString& custom_dir);
|
||
|
|
const QStringList get_color_schemes_dirs();
|
||
|
|
|
||
|
|
#endif
|