#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <termcolor/termcolor.hpp>
using namespace std;
int main() {
string choice;
system("lsd ~/.config/hypr/sources/ --tree --hyperlink always");
cout << termcolor::yellow
<< "Choose file: "
<< termcolor::reset;
cin >> choice;
system(("env $EDITOR ~/.config/hypr/sources/"
+choice
+".conf"
+" && echo Finished").c_str());
return 0;
}