{"id":37139206,"url":"https://github.com/darklab8/fl-ctrlv","last_synced_at":"2026-01-14T16:02:55.724Z","repository":{"id":263110174,"uuid":"889377303","full_name":"darklab8/fl-ctrlv","owner":"darklab8","description":"Make Ctrl-V work for Freelancer(2003) game","archived":false,"fork":false,"pushed_at":"2024-11-16T21:53:52.000Z","size":4211,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-12T05:34:09.642Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/darklab8.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-16T08:04:03.000Z","updated_at":"2024-11-23T14:42:01.000Z","dependencies_parsed_at":"2024-11-16T22:28:26.816Z","dependency_job_id":null,"html_url":"https://github.com/darklab8/fl-ctrlv","commit_stats":null,"previous_names":["darklab8/fl-darkctrlv","darklab8/fl-ctrlv"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/darklab8/fl-ctrlv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darklab8%2Ffl-ctrlv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darklab8%2Ffl-ctrlv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darklab8%2Ffl-ctrlv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darklab8%2Ffl-ctrlv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/darklab8","download_url":"https://codeload.github.com/darklab8/fl-ctrlv/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darklab8%2Ffl-ctrlv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28425596,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T15:24:48.085Z","status":"ssl_error","status_checked_at":"2026-01-14T15:23:41.940Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-14T16:02:55.007Z","updated_at":"2026-01-14T16:02:55.706Z","avatar_url":"https://github.com/darklab8.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"![](./assets/logo.png)\n\n# Description\n\nMaking Ctrl-V work for the game Freelancer(2003).\nProviding versions for\n- Windows\n- Linux (X11) (should work Ubuntu at least as it was compiled on it.)\n    - If it will not work for other linuxes... you need to compile it from this specific Linux u have\n\n# Download\n\n- [Download from releases](\u003chttps://github.com/darklab8/fl-ctrlv/releases\u003e)\n\n# How to use?\n\n- Turn it on. (By mouse clicking executor, or from console)\n- Copy some text into your clipboard (Ctrl+C)\n- press Ctrl+V in the game.\n- Release Ctrl-V as soon as possible. You have 1 second to release it. (If u will not release it, text will be written as you if u had pressed Ctrl)\n\nWindow Title Targeting:\n- for convenience excluded its working in not Freelancer (or not Wine) windows.\n- it seeks for title to contain \"Freelancer\" or \"Wine\".\n- env var TITLE_CONTAINS can override behavior for targeting any other window\n\nLimitations:\n- You try to print `*`, it could print `8` instead potentially (works from Linux correctly)\n- It looks to be able to handle Capitalizing letters on its own, but watch out for any not ordinary english symbols.\n- Not printing at least brackets\n\n# For other Freelancer dark tools\n\n- [link](\u003chttps://darklab8.github.io/blog/community_freelancer.html\u003e)\n\n# Development.\n\n- Build only from OS to which u need it. Cross compiling between OSes leads to weird bugs.\n\n# Building from Ubuntu\n\n```\n# Copy paste from https://github.com/go-vgo/robotgo?tab=readme-ov-file#requirements\n# gcc\nsudo apt install gcc libc6-dev\n\n# x11\nsudo apt install libx11-dev xorg-dev libxtst-dev\n\n# Clipboard\nsudo apt install xsel xclip\n\n#\n# Bitmap\nsudo apt install libpng++-dev\n\n# GoHook\nsudo apt install xcb libxcb-xkb-dev x11-xkb-utils libx11-xcb-dev libxkbcommon-x11-dev libxkbcommon-dev\n```\n\nInstall the stuff and run `task build:linux` (if u have installed taskfile.dev), or just check commands inside [Taskfile.yml](./Taskfile.yml)\n\n\n# Building from other linuxes\n\nSee here https://github.com/go-vgo/robotgo?tab=readme-ov-file#requirements what needs to be installed\nthen run same command go build command, the same as for ubuntu\n\n# Building from windows\n\n- Download already built mingw from https://winlibs.com/\n- Unzip to for C:\\mingw64\n- and add C:\\mingw64\\bin folder into `Path` (search for Environment variables in taskbar)\n- task build:windows (or just check command to run inside [Taskfile.yml](./Taskfile.yml))\n    - builds greats if running the command from `Git Bash` console\n\n# Other useful links\n\n- https://github.com/robotn/gohook?tab=readme-ov-file\n- https://github.com/go-vgo/robotgo?tab=readme-ov-file#requirements\n- https://pkg.go.dev/golang.design/x/clipboard#section-readme\n\nP.S. you probably don't need separate cllipboard program, as it is present in robotgo.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarklab8%2Ffl-ctrlv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdarklab8%2Ffl-ctrlv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarklab8%2Ffl-ctrlv/lists"}