def output_box()

in src/pathpicker/screen_control.py [0:0]


    def output_box(self) -> None:
        max_y, _max_x = self.screen_control.get_screen_dimensions()
        top_y = max_y - 2
        min_y = self.get_min_y()
        diff = top_y - min_y
        x_pos = self.get_x()

        box_start_y = int(diff * self.box_start_fraction) + min_y
        box_stop_y = int(diff * self.box_stop_fraction) + min_y

        self.printer.addstr(box_start_y, x_pos, "/-\\")
        for y_pos in range(box_start_y + 1, box_stop_y):
            self.printer.addstr(y_pos, x_pos, "|-|")
        self.printer.addstr(box_stop_y, x_pos, "\\-/")