-
Notifications
You must be signed in to change notification settings - Fork 5k
Warp on Linux #3602
-
@vorporeal and @alokedesai have been working on porting a build of Warp for Linux. We're opening up this discussion so we can field people's questions about the process and also get insight from the community!
[Feb 2024] Hey everyone, we're excited to announce that Warp on Linux is now generally available, download it from our website and see our quickstart guide here. 🥳 🚀
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 225 -
🎉 182 -
❤️ 98 -
🚀 89 -
👀 37
Replies: 53 comments 169 replies
-
So, does it use GTK or Qt? Show us some screenshots, please!
Beta Was this translation helpful? Give feedback.
All reactions
-
Another option, as indicated above, is tauri, but I personally wouldn't want my terminal to be written in a js/ts framework. There was a terminal app that went with that approach, don't remember the name unfortunately, and it just felt slow, though it was using electron I believe, so mb it wouldn't be as bad with tauri, but can't tell for sure.
Yeah you're probably thinking of Hyper. Seeing as the warp devs are compiling with WASM that should keep things fast. Also Tauri is built with Rust and is more lightweight than Electron so it may turn out to be a good combination. I'm excited to see what they come up with. 👍
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 5
-
Yeah you're probably thinking of Hyper. Seeing as the warp devs are compiling with WASM that should keep things fast. Also Tauri is built with Rust and is more lightweight than Electron so it may turn out to be a good combination. I'm excited to see what they come up with. 👍
Correct, Hyper was it. And ye, that's why I said I can't be completely sure that web frameworks are a bad choice, since tauri is actually good🤣
Beta Was this translation helpful? Give feedback.
All reactions
-
Maybe I'm missing something, didn't the devs build their own UI framework from the ground up? Is there a reason to believe they wouldn't port it to Linux, rather than use GTK/Qt? Or am I completely misunderstanding how the pieces fit together here?
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 9
-
Tauri is honestly not the best option for linux primarily because (last time I checked), there is no way to explicitly set the backend to be wayland, and it defaults to X whenever the application uses global hotkeys. It even seems to override or ignore the env variable GDK_BACKEND=wayland
Beta Was this translation helpful? Give feedback.
All reactions
-
Voting for GTK4 with Libadwaita components.
It's pretty easy to use from Rust (It's basically like manipulating DOM elements with vanilla JS) and looks great. I am sure there are frameworks out there to make it easier to work with but it has been fine by itself for me.
Supports Wayland out of the box and Gnome is shipping a Vulkan renderer in the next few months.
Beta Was this translation helpful? Give feedback.
All reactions
-
hype!
What is the biggest challenge in porting it?
Beta Was this translation helpful? Give feedback.
All reactions
-
I'm assuming mostly low-level graphics work, since they wouldn't have to port it if they were using vulkan/wgpu (mb small tweaks here and there), since it's cross-platform by default. And bc it has been mac-only, I'm assuming they were using metal for graphics, which cannot be used on Linux/Windows
Beta Was this translation helpful? Give feedback.
All reactions
-
webgpu can target vulkan, metal, and direct3d 12, if they rewrite their graphics in webgpu then it should be write-once-run-everywhere
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 3
-
webgpu can target vulkan, metal, and direct3d 12, if they rewrite their graphics in webgpu then it should be write-once-run-everywhere
Oh true, forgot it can do metal as well
Beta Was this translation helpful? Give feedback.
All reactions
-
We built a wgpu implementation of our renderer as part of this effort that we intend to use as our backing renderer on Linux, Windows, and the web.
Once we do enough performance testing, we also plan on replacing our Metal renderer with the wgpu renderer so we don't need to maintain two different implementations of our renderer :)
Beta Was this translation helpful? Give feedback.
All reactions
-
🚀 40
-
X only, or Wayland too?
Beta Was this translation helpful? Give feedback.
All reactions
-
X11 should be really considered deprecated. Wayland support should really be the primary goal and X11 support if there's time, not the other way around. Good to see winit covers both though!
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 7
-
I can't speak for Nvidia GPU owners but I have been using Wayland for the last 2 years on Gnome 4x and haven't had any issues. I would be fine if this were Wayland-only, especially if that means a smoother experience that is easier for the team to maintain.
Beta Was this translation helpful? Give feedback.
All reactions
-
I can't speak for Nvidia GPU owners but I have been using Wayland for the last 2 years on Gnome 4x and haven't had any issues. I would be fine if this were Wayland-only, especially if that means a smoother experience that is easier for the team to maintain.
I have an Nvidia GPU, and wayland is great; it's X11(or Xwayland) apps that tend to fail spectacularly
Beta Was this translation helpful? Give feedback.
All reactions
-
X11 is too old , I think
Beta Was this translation helpful? Give feedback.
All reactions
-
When you take an already fragmented platform that is linux and then divide that in half by what compositor a system is running
Compare that to Windows, though, where the single API (some of the features dating back to DOS) is a nightmare to work with and will never, ever change.
The single API? euh... ok. And never changes ? euh.. anyway, so much ideology, so little knowledge.
Beta Was this translation helpful? Give feedback.
All reactions
-
Will there be a beta program?
Beta Was this translation helpful? Give feedback.
All reactions
-
👀 18
-
What's going to be the release format? Official repo, rpm, deb, appimage, flatpak, snap?
Beta Was this translation helpful? Give feedback.
All reactions
-
Given that Warp developers target WASM (or x86_64-unknown-linux-musl?) on Linux, it would probably be a single executable, hopefully statically linked, so the packaging would be extremely easy: only one file to add, apart from the .desktop and the permissions needed (which for a terminal emulator would be full access to all filesystem, etc).
Ye, that I can't argue with, I'll admit. I guess I was talking just more generally about all kinds of software written in all kinds of languages. Rust applications are definitely the easiest ones to package in my experience (of course there are exceptions but on average I perceive it to be true, but let me know if stats (if there are any) prove otherwise)
Beta Was this translation helpful? Give feedback.
All reactions
-
To clarify here - use of WASM to make a version of Warp that runs in a web browser is unrelated to the work to port Warp to Linux. Linux releases of Warp will be good old fashioned ELF binaries (with specifics of packaging and distribution still TBD). But yes, Rust's tendency towards statically compiling all dependencies into the binary itself (as opposed to relying on shared dynamic libraries) should make this significantly easier.
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 8
-
Anyone mentioned cargo binstall yet? Completely distro (and platform) independent and does not require compiling from source. The only downside is that it assumes that that the user has rust toolchain installed locally, but i think as one of the options it would be perfect.
Beta Was this translation helpful? Give feedback.
All reactions
-
I use Fedora so I am happy with whatever works there. I'd honestly be fine with a straight up executable I download from the GitHub releases section and a list of dependencies to install.
curl -L --url .../linux-amd64.tar.gz | tar -xvzf - -C $HOME/.local/warp
sudo dnf install gtk #... maybe not needed?
It'll be largely statically linked so I don't imagine there will be many (if any) dependencies to install.
Maybe open the wiki up to the community to maintain up distro-specific install instructions?
Beta Was this translation helpful? Give feedback.
All reactions
-
I think it's not really important, but don't use snap, snap is so awful.
If you won't add it into the software sources, I think .tar.gz is the best one.
Beta Was this translation helpful? Give feedback.
All reactions
-
Also info about the requirements in the machine?
Beta Was this translation helpful? Give feedback.
All reactions
This comment was marked as duplicate.
This comment was marked as duplicate.
-
To make this discussion easier for anyone and especially the developers to follow, please don’t start new threads when one already exists for the subject matter. Release formats are discussed in this thread.
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 8
This comment was marked as duplicate.
This comment was marked as duplicate.
-
To make this discussion easier for anyone and especially the developers to follow, please don’t start new threads when one already exists for the subject matter. Packaging is discussed in this thread.
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 5
-
Please people stop asking for flatpak or others. One post is enough just upvote the others comments.
I am getting too many notifications.
Beta Was this translation helpful? Give feedback.
All reactions
-
Beta Was this translation helpful? Give feedback.
All reactions
-
😄 4
-
I want to get updates here but not 30 emails about "please flatpak"
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 23
-
Yea well that hornets nest has been stirred. This will only end when someone closes the discussion at this point from my experience with literally every other piece of linux software. lol
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 2
-
Yeah, but we can be better. @Mte90 has specifically said that he wants to stay informed, but that he cannot if he is being spammed. So... let's not spam!
Beta Was this translation helpful? Give feedback.
All reactions
-
❤️ 5
-
What package formats will be natively supported? My recommendation would be nix, Great, easy and supports building to multiple other formats.
On a sidenote, is there an argument to run a command at launch, for example:
Alacritty -e echo UwUBeta Was this translation helpful? Give feedback.
All reactions
-
👎 5
-
To make this discussion easier for anyone and especially the developers to follow, please don’t start new threads when one already exists for the subject matter. Release and package formats are discussed in this thread.
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 4
-
do we have the first release for Linux build to test it out? Then we can list of distros to package it with appropriate binaries.
Beta Was this translation helpful? Give feedback.
All reactions
-
they wrote on top that they are experimenting and that is not yet available.
Beta Was this translation helpful? Give feedback.
All reactions
-
-
Any rough ETA on when this might be ready?
-
Does this mean I'll be able to start using Warp on Windows by installing the Linux release on WSL2, or is it not that simple?
Beta Was this translation helpful? Give feedback.
All reactions
-
- Does this mean I'll be able to start using Warp on Windows by installing the Linux release on WSL2, or is it not that simple?
Most likely this will not be feasible, but wsl2 supports graphical X11 apps, more or less, so maybe?
Beta Was this translation helpful? Give feedback.
All reactions
-
I'm not positive if that would be feasible, but we do plan on building Warp for Windows once we've wrapped up building Linux (no concrete timeline just yet).
Windows provides a "PTY"-like interface which makes our lives much easier.
We also intend to build support for Powershell as part of building Warp on Windows.
Beta Was this translation helpful? Give feedback.
All reactions
-
Please keep in mind when you start working on Windows support that WSL support is a must-have for most people (myself included :D). Fortunately, if you follow the new PTY interface that Microsoft introduced for their Windows Terminal to work, there isn't much additional work to do in order to support WSL.
Beta Was this translation helpful? Give feedback.
All reactions
-
Absolutely--we also considering supporting WSL a must :) I didn't mention it above because there isn't much additional work for us to support WSL for the exact reasons you mention
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 6
-
X11 is Legacy. WSL2 Supports for Graphical Wayland apps
Beta Was this translation helpful? Give feedback.
All reactions
-
Will it be port for X11 or Wayland?
In theory we can use xwayland, but native version will be nice
Beta Was this translation helpful? Give feedback.
All reactions
-
❤️ 2
-
Already answered here: #3602 (reply in thread)
Beta Was this translation helpful? Give feedback.
All reactions
-
The Wayland Support is a must-have
Beta Was this translation helpful? Give feedback.
All reactions
-
In my understanding of WASM, WASM itself does nothing except pure computation, i.e., it cannot use any syscalls, such as fork, alarm, rendering through GPU.
To be able to use syscalls, there are two main approaches:
-
Import such functionalities implemented in host languages
-
WASI, or WASIX which was recently posted.
These two approaches are more efficient and graceful in my understanding, since these functionalities are usually provided by the WASM runtime (which is more standardized and atomic), or by ourselves through component model (which, however, is not supported widely in current).
I am not aware of the total architecture of Warp, but I think as a well-known terminal app using WASM, the team could approaches the WASM/WASI/WASIX official team if some requirements could not be met.
Beta Was this translation helpful? Give feedback.
All reactions
-
Import such functionalities implemented in host languages
with the limitation of being restricted to only what can be implemented in memory*
without native bindings, vanilla WASM (aka, WASM without WASI) can't do any IO. as such, if the host language has a filesystem implementation, it'll be restricted entirely to being in-memory, and without any way of saving the data - so if you exit the program and then reload it (or just start another process of the program), there will be no saved state
since these functionalities are usually provided by the WASM runtime (which is more standardized and atomic)
the existence of WASIX isn't standardized at all :) wasmer got too antsy and released it without working with Bytecode Alliance, which means wasmer isn't wasi. wasi preview 2 coming soon though, and should support what most WASI apps would need
or by ourselves through component model (which, however, is not supported widely in current).
it's not even "officially" released yet! hopefully by EOY. and i doubt wasmer will support it, since they're... doin their own thing
see more: https://bytecodealliance.org/articles/webassembly-the-updated-roadmap-for-developers
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 1
-
To clarify here - use of WASM to make a version of Warp that runs in a web browser is unrelated to the work to port Warp to Linux. Linux releases of Warp will be good old fashioned ELF binaries (with specifics of packaging and distribution still TBD).
Beta Was this translation helpful? Give feedback.
All reactions
-
wasmer got too antsy and released it without working with Bytecode Alliance, which means wasmer isn't wasi
This is not only technically wrong but is also misleading. WASIX preserves full API compatibility with WASI Preview 1, while WASI Preview 2 is a breaking change from its previous version.
Of course, we (Wasmer) did not agree to make any breaking changes and as such we created a new standard closest to POSIX that built on top of the previous working version... hopefully that will be useful for some. If you think the component model is for you, go all in... of course! But that may not be sufficient for many! (especially if you want to use sockets, threads, forks, signals, or many other features)
I also think Warp would really benefit from Wasm and WASIX. So happy to help in case help is needed!
Beta Was this translation helpful? Give feedback.
All reactions
-
🎉 1
-
Make use of everything that kitty tty has pioneered, e.g. https://sw.kovidgoyal.net/kitty/protocol-extensions/
If warp can't compete with kitty, why would we switch? It's the benchmark. Better than alacritty and everything that came before it.
Beta Was this translation helpful? Give feedback.
All reactions
-
👎 5
-
guys what is the link for discord?
when i mailed them for access, like since it's invite-only, i got a reply from @zachlloyd, i thought it was access link, but it turned out to b an autobot mail..., so hw can i access the beta?, and that guy who posted the build instructions thing, it doesnt work...
i m using arch linux, hyprland
Beta Was this translation helpful? Give feedback.
All reactions
-
Beta Was this translation helpful? Give feedback.
All reactions
-
Also, your account needs to get whitelisted for the beta. Otherwise, you can't login.
Beta Was this translation helpful? Give feedback.
All reactions
-
Happy New Year! As you may have seen in the discussion, Warp on Linux is in a private beta to a few hundred users to make sure everything is stable ahead of a larger release. We will update this thread when Warp on Linux becomes widely available and you can also add your name to the waitlist. We're excited about Warp on Linux launching and we can't wait to share it with you when it's ready!
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 19 -
🎉 28 -
❤️ 4
-
@noahzweben Attention attention please 🖐🏻🖐🏻 waiting for so long here 😃
Beta Was this translation helpful? Give feedback.
All reactions
-
Everyone wanting to join the beta need to go here ==> https://discordapp.com/channels/851854972600451112/1184925886487724063
Beta Was this translation helpful? Give feedback.
All reactions
-
@eosdev-x is there an invitation to join the server? I'm unable to see this channel.
Beta Was this translation helpful? Give feedback.
All reactions
-
Beta Was this translation helpful? Give feedback.
All reactions
-
❤️ 1
-
any updates, waiting like hell for this Time Warper
Beta Was this translation helpful? Give feedback.
All reactions
-
guys 👋🏻 does anyone of you has access but dont have time? pls give me your email and i will use warp on my machine bcoz i am not able to wait anymore and @zachlloyd isn't giving me access to Warp 😢 idk if it works but i've been spamming my email in the linux waitlist every 15 mins thru a python bot but ig it doesnt work coz i thought that there's more priority to ppl who gives their names more...
Beta Was this translation helpful? Give feedback.
All reactions
-
👎 13
-
Ok 1. Why are you not able to wait? What's the urgent use case that can't be solved by using an alternative solution? The product is simply not ready, and I can't think of any particular feature of Warp that makes it an irreplaceable solution...
2. Spamming the list doesn't do anything. There must be deduplication logic in place. And even if you use different emails, the first one was already the highest priority you can get if the list is on a first come first serve basis.
3. There were early build and instructions previously shared in this topic. I downloaded them and tried bit they didn't work on wsl just yet. There were no credentials required to test. You don't need someone else account.
4. Did you already join the discord server? It's faster to ask for instructions there than nagging here.
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 1
-
i'll answer you step by step:
- I am waiting since september 2021, since i heard they started Warp on Linux, no urgent use case but its the first time i heard AI enabled terminal, i saw fig.io but they have disabled signups coz they have integrated with AWS.
- I guess spamming the same email again and again works coz i got an email from Warp that i am allowed access.
- There's no early build right now, they are in Beta right now and we need a whitelisted account to have access to warp as its a private beta.
- Yeah i am in the discord server already and i've posted about letting me access a few times in the server
Beta Was this translation helpful? Give feedback.
All reactions
-
@daUnknownCoder
Maybe you will temporarily be satisfied with such a decision?
ollama
& script to install:
webinstall.dev
Of course, it is local, and if you lack computing power, then it is unacceptable.
Beta Was this translation helpful? Give feedback.
All reactions
-
Thank you for your interest in Warp for Linux. The wait is almost over!
Warp for Linux will be widely released on Thursday February 22nd, 2024.
If you added your email to the waitlist, you’ll receive an email from Warp when Warp for Linux is generally available.
We will also be hosting a live "Launch Party" event on the release day and you’re invited to attend. You can pre-register now.
For folks who have been waiting to join the private beta: we had been adding people by email in batches to the private beta allowlist as we worked to ensure stability ahead of the release. At this time, the release appears stable. We will be slowing down invitations to the private beta after today.
We are looking forward to making Warp for Linux available to everybody soon!
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 7 -
🎉 29 -
❤️ 7 -
🚀 7
-
Amazing!
How about windows? Could then warp be used on Windows through WSL?
Beta Was this translation helpful? Give feedback.
All reactions
-
😄 1 -
😕 2
-
Hey everyone, we're really excited to announce that Warp on Linux is now generally available and can be downloaded from our website 🥳 🚀.
Thank you to everyone here for the thoughtful comments and for the beta users who gave us early feedback on how we could make Warp on Linux better, it is much appreciated.
As Noah mentioned above, we will also be hosting a live "Launch Party" event today which we'd love for you to attend. You can pre-register here.
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 1 -
🎉 28 -
❤️ 2 -
🚀 15 -
👀 1
-
@EliteAMDGamer Yes, it is installed.
Beta Was this translation helpful? Give feedback.
All reactions
-
I'm also having issues with hidpi and wayland. Using latest hyprland with xdg-desktop-portal-hyprland and xdg-desktop-portal-gtk installed.
Anyone find any flags or env vars yet?
Beta Was this translation helpful? Give feedback.
All reactions
-
Not yet, but I'm sure as heck lookin'.
Beta Was this translation helpful? Give feedback.
All reactions
-
I've found a workaround using a shell script to be able to pass commands to warp-terminal usage is just call the script with the command as the first argument (in quotes if there's spaces):
#!/bin/bash
# Check if warp-terminal is installed
if ! command -v warp-terminal &> /dev/null; then
echo "Error: warp-terminal is not installed or not in PATH"
exit 1
fi
# Check if xdotool is installed
if ! command -v xdotool &> /dev/null; then
echo "Error: xdotool is not installed or not in PATH"
exit 1
fi
# Check if an argument is provided
if [ $# -eq 0 ]; then
echo "Usage: 0ドル <command>"
exit 1
fi
# Launch warp-terminal in a new tab
warp-terminal &
# Wait for the terminal window to appear
sleep 1
# Send commands to the terminal
xdotool type --delay 50 --clearmodifiers "1ドル"
xdotool key Return
# Optionally, you can send more commands by adding them as additional arguments
# for arg in "${@:2}"; do
# xdotool type --delay 50 --clearmodifiers "$arg"
# xdotool key Return
# done
Beta Was this translation helpful? Give feedback.
All reactions
-
@asjur @ndom91 (and anyone else with Wayland issues) From #4240, there's the WARP_ENABLE_WAYLAND=1 environment variable that might work for you.
Beta Was this translation helpful? Give feedback.
All reactions
-
Can i use Warp on Kali Linux ?
i install it by the DEB file.. i can actually see trhe program in my system , but then when i open it nothing shows. only sistem tray icon of warp.
Any help will/would be appreciated
Beta Was this translation helpful? Give feedback.
All reactions
-
I'm having the same result...I guess it's not working on Kali for now.
Beta Was this translation helpful? Give feedback.
All reactions
-
Maybe is something about a privacy matters.. after all Warp need a login, so i was thinking perhaps they actully get more than just a
' login token ' of you system and Kali or Parrot is quite an experience in that matter .
just a random thoughts; after tring it on Debian and Fedora.
Beta Was this translation helpful? Give feedback.
All reactions
-
Hey guys, can anyone help me out so i can remove the "Almost**" from this?
Almost** Working Warp For WSL2 (on win10)
- Enable x11 apps in WSL2
sudo apt install x11-apps libegl1 libxkbcommon-x11-0 - download & install Windows X Server - https://sourceforge.net/projects/vcxsrv/
- start XLaunch, config:
Multiple Windows -> Next -> Start no client -> Next -> disable Native opengl AND enable Disable access control -> Run - in wsl2 (put it in your rc file if working)
export DISPLAY=$(ip route list default | awk '{print 3ドル}'):0
export LIBGL_ALWAYS_INDIRECT=1
echo $DISPLAY # make sure this looks right - test its working with runnning
xcalc
you should see xcalc open now - install & start warp
wget https://releases.warp.dev/stable/v0.2024年02月20日.08.01.stable_01/warp-terminal_0.2024年02月20日.08.01.stable.01_amd64.deb
sudo dpkg -i warp-terminal_0.2024年02月20日.08.01.stable.01_amd64.deb
warp-terminal
the steps are from https://stackoverflow.com/questions/61110603/how-to-set-up-working-x11-forwarding-on-wsl2
also: echo "*customization: -color" >> ~/.Xdefaults enables colors, if not, the apps are black and white (can be seen with xcalc)
Doing this, it looks like warp-terminal is starting, i can see the program logs
but i see a black sceen for warp instead of the app, i see xcall running nicely
this might be do to opengl but im pretty sure i tried all combination, with, without (in xlaunch) LIBGL_ALWAYS_INDIRECT=1, LIBGL_ALWAYS_INDIRECT=0
so yea i feel like im almost there, can anyone help??
Thanks a lot and all the best!
Beta Was this translation helpful? Give feedback.
All reactions
-
- warp is running successfully on wsl2, but rendered blank/black when launched to xlaunch
- I dont know what the hello screen is but pressing enter takes me to https://app.warp.dev/logged_in/remote?is_user_new=false&scheme=warp&public_beta=true and i see "Logged in as....", thats how i know warp is working (+ logs)
I feel like its one step away from working
any thoughts @alokedesai ? ☝️
Beta Was this translation helpful? Give feedback.
All reactions
-
@alokedesai any thoughts/revelations ?
would be super apreciated
Thanks and all the best!
Beta Was this translation helpful? Give feedback.
All reactions
-
will someone try to make it working on wsl2 alpine @fire17 ? :D
Beta Was this translation helpful? Give feedback.
All reactions
-
i'm using warp on opensuse, and i would like to have a url for a .repo file so that i can make a script call zypper addrepo when i reinstall the system. would you mind letting me know if such a link is available for us to use?
also, is there a timeline for when warp supports completion for commands with completion scripts in ~/.local/share/bash-completion/completions/?
many thanks!
Beta Was this translation helpful? Give feedback.
All reactions
-
Not sure if this should be here or a separate post, but on linux (Ubuntu 22.04, non-wayland, default desktop) and I've hit two issues so far:
1 - There is no menu I can find. On mac it'd be there of course, but on linux the 'menu' in the menu bar just has "show details" and "new window". So all the documentation for submitting feedback etc isn't possible.
2 - If you have passwordless sudo the tab title doesn't update when you sudo -i. IE:
Non passwordless sudo:
- log in to server
- tab title shows user@host as well as the command line prompt
- run sudo -i and it waits for you to put your password in
- tab title shows "sudo -i" (command being executed - makes sense, all good so far
- put in password
- now the prompt on the command line shows 'root@host.com'
- the tab title also shows 'root@host.com'
- This is exactly as it should be, and easy to identify servers if you have lots of tabs open
Passwordless sudo:
- log in to server
- prompt and tab title shows user@host
- run sudo -i
- since it's passwordless there's no prompt and I'm root right away
- prompt now hows "root@host"
- tab title shows "sudo -i"
This second case is sub-optimal obviously as if you're more than one server and all your tab titles show "sudo -i" you have no idea where you are.
Please let me know if submitting this here is good or if it needs to go as a separate post / report or report it through another way.
Beta Was this translation helpful? Give feedback.
All reactions
-
Any chance for an ARM version? Running a Linux (Ubuntu in that case) VM on my Apple Silicon MacBook Pro, for that ARM version would be needed.
Beta Was this translation helpful? Give feedback.
All reactions
-
ARM linux versions are now on the Warp download page. https://www.warp.dev/download!
Beta Was this translation helpful? Give feedback.
All reactions
-
wrong datetime in warp.log
maybe log the server time, not my local time.
os: ubuntu 22.04
Beta Was this translation helpful? Give feedback.
All reactions
-
Just wanted to write in and let the Warp team know that Warp appimage is running well for me on Fedora Bluefin:
I do wish I could just install from flathub, though, since flatpak is well integrated with Bluefin/Silverblue/ublue etc.
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 2
-
And note this is wayland with 150% scaling, no flickering or weird artifacts so far.
Beta Was this translation helpful? Give feedback.
All reactions
-
Did anyone had the copy-paste issue to and from warp to other apps in Ubuntu 24.04? This is really making my life hard to use warp.
Beta Was this translation helpful? Give feedback.
All reactions
-
Ok, doing this solved the problem:
echo WARP_ENABLE_WAYLAND=0 >> ~/.config/environment.d/envvars.conf
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 2
-
Is there a way to start the warp terminal silently/minimized at startup? I use ubuntu 22.
Beta Was this translation helpful? Give feedback.
All reactions
-
I'm not sure there's a built in way (yet?), but this might help in the interim.
Beta Was this translation helpful? Give feedback.
All reactions
-
i can't enable wayland on warp terminal
Beta Was this translation helpful? Give feedback.