Buy — T8 Bulbs

Look for PET-coated bulbs if you are installing them in a kitchen or food prep area.

High contrast and crisp. Ideal for garages, workshops, and basements. buy t8 bulbs

"Ballast Bypass" (requires simple rewiring but is more reliable). 2. Fluorescent Tubes (The Traditional Choice) Cost: Cheaper upfront price point. Color: Excellent color rendering (CRI) for art studios. Look for PET-coated bulbs if you are installing

Mimics noon sunlight. Great for indoor plants or detailed task work. 🛒 Pro Shopping Checklist Before you hit "Add to Cart," check these final details: "Ballast Bypass" (requires simple rewiring but is more

If buying Type A LEDs, check the manufacturer's "Compatibility List." Dimmability: Not all T8 bulbs work with dimmer switches.

If you are just looking for the essentials to get your shopping started, keep these three factors in mind: T8 bulbs are 1 inch (8/8") in diameter. Length: 4-foot (48-inch) is the industry standard. Pins: Most T8s use a G13 medium bi-pin base. 🛠️ Fluorescent vs. LED: Which should you buy?

The biggest decision you will face is sticking with traditional fluorescent tubes or upgrading to LED. Lifespan: Lasts up to 50,000 hours. Efficiency: Uses 40–60% less energy. Instant On: No flickering or buzzing in the cold. Types: Type A: "Plug and Play" (works with your existing ballast).

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