Oui, peut être faut-il ajouter une option après les commandes dcop... --user ou autre ?
.bashrc
------------
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines in the history. See bash(1) for more options
#export HISTCONTROL=ignoredups
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# enable color support of ls and also add handy aliases
if [ "$TERM" != "dumb" ]; then
eval "`dircolors -b`"
alias ls='ls --color=auto'
#alias dir='ls --color=auto --format=vertical'
#alias vdir='ls --color=auto --format=long'
fi
# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(lesspipe)"
# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "$debian_chroot" -a -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi
case `whoami` in
root)
USER_AT_HOST="${USER}@${HOSTNAME%%.*}"
;;
*)
USER_AT_HOST="${USER}@${HOSTNAME%%.*}"
;;
esac
# Comment in the above and uncomment this below for a color prompt
#PS1='${debian_chroot:+($debian_chroot)}\[033円[01;32m\]\u@\h\[033円[00m\]:\[033円[01;34m\]\w\[033円[00m\]\$ '
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt|eterm)
#PROMPT_COMMAND='echo -ne "033円]0;${USER}: ${PWD/$HOME/~}007円";dcop $KONSOLE_DCOP_SESSION renameSession ${PWD/$HOME/~}'
#;;
PROMPT_COMMAND='echo -ne "033円]0;007円";dcop $KONSOLE_DCOP_SESSION renameSession $USER_AT_HOST" ":" "${PWD/$HOME/~}'
;;
screen)
PROMPT_COMMAND='echo -ne "033円_${USER}: ${PWD/$HOME/~}033円\\";dcop $KONSOLE_DCOP_SESSION renameSession ${PWD/$HOME/~}'
;;
*)
;;
esac
# Define your own aliases here ...
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
#if [ -f /etc/bash_completion ]; then
# . /etc/bash_completion
#fi
# This line was appended by KDE
# Make sure our customised gtkrc file is loaded.
export GTK2_RC_FILES=$HOME/.gtkrc-2.0
.bash_profile
--------------------
# ~/.bash_profile: executed by bash(1) for login shells.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/login.defs
#umask 022
xhost + local:
# include .bashrc if it exists
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# set PATH so it includes user's private bin if it exists
if [ -d ~/bin ] ; then
PATH=~/bin:"${PATH}"
fi
[^] # Re: humm
Posté par Yo_sensei . En réponse au message couldn't attach to dcop server. Évalué à 1.
Oui, peut être faut-il ajouter une option après les commandes dcop... --user ou autre ?
.bashrc
------------
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines in the history. See bash(1) for more options
#export HISTCONTROL=ignoredups
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# enable color support of ls and also add handy aliases
if [ "$TERM" != "dumb" ]; then
eval "`dircolors -b`"
alias ls='ls --color=auto'
#alias dir='ls --color=auto --format=vertical'
#alias vdir='ls --color=auto --format=long'
fi
# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(lesspipe)"
# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "$debian_chroot" -a -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi
export PATH="/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin:/lib:/usr/X11R6/lib":$PATH
case `whoami` in
root)
USER_AT_HOST="${USER}@${HOSTNAME%%.*}"
;;
*)
USER_AT_HOST="${USER}@${HOSTNAME%%.*}"
;;
esac
# Comment in the above and uncomment this below for a color prompt
#PS1='${debian_chroot:+($debian_chroot)}\[033円[01;32m\]\u@\h\[033円[00m\]:\[033円[01;34m\]\w\[033円[00m\]\$ '
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt|eterm)
#PROMPT_COMMAND='echo -ne "033円]0;${USER}: ${PWD/$HOME/~}007円";dcop $KONSOLE_DCOP_SESSION renameSession ${PWD/$HOME/~}'
#;;
PROMPT_COMMAND='echo -ne "033円]0;007円";dcop $KONSOLE_DCOP_SESSION renameSession $USER_AT_HOST" ":" "${PWD/$HOME/~}'
;;
screen)
PROMPT_COMMAND='echo -ne "033円_${USER}: ${PWD/$HOME/~}033円\\";dcop $KONSOLE_DCOP_SESSION renameSession ${PWD/$HOME/~}'
;;
*)
;;
esac
# Define your own aliases here ...
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
#if [ -f /etc/bash_completion ]; then
# . /etc/bash_completion
#fi
# This line was appended by KDE
# Make sure our customised gtkrc file is loaded.
export GTK2_RC_FILES=$HOME/.gtkrc-2.0
.bash_profile
--------------------
# ~/.bash_profile: executed by bash(1) for login shells.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/login.defs
#umask 022
xhost + local:
# include .bashrc if it exists
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# set PATH so it includes user's private bin if it exists
if [ -d ~/bin ] ; then
PATH=~/bin:"${PATH}"
fi
export DISPLAY=:0.0