Tagged Questions
1
vote
1answer
162 views
vi setting for new window
I'm using terminator (terminal emulator). Whenever I open it, the initial workspace comes with the setting I defined in the config file. But whenever I split the workspace, the new workspace comes ...
3
votes
1answer
860 views
Disable bold font in urxvt
I want to disable the bold font in my urxvt config (.Xresources). xterm has the option allowBoldFonts. Is there a similar option for urxvt? I can't find anything similar.
2
votes
1answer
247 views
Can I configure XFCE terminal the way to open all the new terminals as tabs of one window?
I strongly prefer to have one terminal window with all the terminals being tabs in it, but the most usual way I open a terminal is calling it from another application (usually with "Open Terminal ...
1
vote
2answers
237 views
screen : automatic creating or reattaching sessions in different configurations
What's clean way to achieve, following functionality:
function screen_create_or_reuse(){
if [ running_screen_session "$1" ]; then
reattach_screen_session screen_name_"$1"
else
...
4
votes
1answer
2k views
Why don't Page U/Down, Home/End work in less on Solaris over ssh from Ubuntu?
I need to work on a Solaris server over ssh from my Ubuntu (Lucid) laptop. I got Home/End Insert/Delete Page Up/Down working in csh and bash using bindkey and ~/.inputrc, respectively. But I can't ...