Aoharu X Kikanjuu Apr 2026

The narrative primarily focuses on the team's ambition to become the best in Japan while navigating Tachibana's secret: she is hiding her gender from her teammates, who have a strict "no girls allowed" rule.

(Aoharu x Machinegun) is a shōnen series centered on the high-energy, often over-dramatized world of competitive airsoft "survival games." Premise and Plot Aoharu x Kikanjuu

: Much of the tension arises from Tachibana’s struggle to reveal her true identity. While some find this dynamic engaging, others criticize the anime for failing to resolve this plot point by its conclusion. The narrative primarily focuses on the team's ambition

: A major motif is the contrast between "Toy Gun Gun" and their rivals, the elite team Hoshishiro , led by the sadistic Dr. Nagamasa Midori . The show explores themes of trust, past betrayal, and the necessity of teamwork. Media Information : A major motif is the contrast between

Critics and viewers often highlight a few standout elements of the series:

The story follows , a high school student council president with a fierce sense of justice and an androgynous appearance. After a series of misunderstandings involving a host named Masamune Matsuoka , Tachibana is forced into a "survival game" to pay off a debt. Despite being a girl, Tachibana is mistaken for a boy and recruited into Matsuoka’s airsoft team, "Toy Gun Gun," alongside ero-manga artist Toru Yukimura .

: The series treats airsoft—a non-lethal hobby—with the intensity of life-or-death warfare. This tonal choice is divisive; some enjoy the stylized action and "berserker" moments, while others find the over-the-top drama at odds with the low stakes of BB guns.

First Tmux Session

Now that you've completed the installation, type tmux to start the first session:


tmux
                    

Split your pane horizontally by typing:

Ctrl+b then %

Note: Ctrl+b is the default prefix key. You can customize this in ~/.tmux.conf file.

Swhich pane by typing:

Ctrl+b then

Ctrl+b then

Detach/Exit session:

Ctrl+b then d

Attach to last session:


tmux a
                    

Customizing Tmux Prefix

To change prefix key to Ctrl+a, add the below lines to ~/.tmux.conf:

# change prefix from 'Ctrl-b' to 'Ctrl-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix

To change prefix key to Ctrl+Space:

# change prefix from 'Ctrl-b' to 'Ctrl-Space'
unbind C-b
set-option -g prefix C-Space
bind-key C-Space send-prefix

Tmux config changes require reload to be applied, run tmux source-file ~/.tmux.conf from the terminal, or run source-file ~/.tmux.conf from Tmux’s command-line mode to reload.

To configure shortcut for quick reload, add the line:

bind r source-file ~/.tmux.conf\; display "Reloaded!"

Now feel free to experiment with the cheat sheet in home page. If you find any missing shortcut, please let me know :D