Corridor
Corridor
Back to Downloads

Corridor for Linux

Native Linux application with system tray integration for all major distributions

Quick Install (Recommended)

One command to download, install, and make executable

curl -fsSL https://corridor.rknain.com/install-linux.sh | bash

Installs to ~/.local/bin/corridor • Adds to PATH

Manual Download

Latest Version: 1.0.0
glibc 2.31+ • Ubuntu 20.04+ • ~3MB
Download Binary
Standalone binary • x86_64 architecture

After Download:

# Make executable
$ chmod +x corridor
# Run the application
$ ./corridor

Or simply double-click the file after making it executable

Key Features

System Tray Integration
Integrates with GNOME, KDE, and other DEs
Auto-Start Support
Desktop file for automatic startup
X11 & Wayland
Works on both display servers
Setup Wizard
Easy configuration on first run with GUI dialogs
Offline Queue
Items synced automatically when reconnected
Clipboard History
Access up to 100 recent clipboard items

Quick Start Guide

1

Install

Use the quick install command above, or download manually and run chmod +x

2

Run corridor

Execute: corridor - Runs detached from terminal. A setup dialog will appear on first run

$ corridor
3

Configure Settings

Enter your token, choose mode (Interactive/Silent), and enable auto-start

4

Start Syncing

Click "Save and Start" - check system tray for the Corridor icon

Compatibility

Supported Distributions

Ubuntu 20.04+, 22.04, 24.04
Debian 11+ (Bullseye, Bookworm)
Linux Mint 20+
Pop!_OS 20.04+
Fedora 35+
openSUSE Leap 15.3+

Not Compatible

Ubuntu 18.04 or older (requires libssl.so.3)
Debian 10 or older
CentOS 7, RHEL 7
Alpine Linux (uses musl, not glibc)
32-bit systems (x86)
ARM/ARM64 architectures (currently)

Requirements

  • glibc 2.31 or newer
  • OpenSSL 3.x (libssl.so.3)
  • Python 3.8+ with tkinter (for setup dialogs)
  • X11 or Wayland display server
  • System tray support (optional)

Auto-Start Configuration

The setup wizard creates an auto-start entry automatically. Alternatively, you can set it up manually:

# Create autostart directory
$ mkdir -p ~/.config/autostart
# Create desktop file
$ cat > ~/.config/autostart/corridor.desktop <<EOF
[Desktop Entry]
Type=Application
Name=corridor
Exec=$HOME/.local/bin/corridor --autostart
Hidden=false
NoDisplay=false
X-GNOME-Autostart-enabled=true
EOF

Troubleshooting

Setup dialog not appearing

Install Python 3 with tkinter:

$ sudo apt install python3-tk

System tray icon missing

For GNOME, install the AppIndicator extension:

$ sudo apt install gnome-shell-extension-appindicator

Permission denied error

Make sure the binary is executable:

$ chmod +x corridor

Viewing logs / Debug mode

By default, corridor runs detached. To see logs and debug output:

$ corridor --debug

Or use -d for short: corridor -d