~/.profile からスクリプトを呼び出すとログインが停止します。

~/.profile からスクリプトを呼び出すとログインが停止します。

私の.bashrcファイルからbashスクリプトを呼び出しました~/.profile

このスクリプトは、ログイン時に画面を暗くするCLIプログラムを実行します。ただし、スクリプトを実行した後、Gnomeは標準デスクトップにログインし続けます。

~/.profileスクリプト呼び出しをブロックしないようにする方法はありますか?この質問に回答するのに役立つ詳細をお知らせします。私のディストリビューションはLinux Mintです。

編集する

コンテンツ.profile.

# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# 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/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022

# Me
bash /home/eoin/repos/scripts/autostart.sh

# if running bash
if [ -n "$BASH_VERSION" ]; then
    # include .bashrc if it exists
    if [ -f "$HOME/.bashrc" ]; then
    . "$HOME/.bashrc"
    fi
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
    PATH="$HOME/bin:$PATH"
fi

私のスクリプト/home/eoin/repos/scripts/autostart.sh

#!/bin/bash
bash ~/repos/scripts/redshift/redshift.sh

これは別のスクリプトを呼び出します:-P

#!/bin/bash
redshift -v

ベストアンサー1

スクリプトのコンテキスト、つまり

# Me
bash /home/eoin/repos/scripts/autostart.sh &

おすすめ記事