diff options
author | Marc Coquand <marc@mccd.space> | 2024-06-08 12:12:57 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-06-08 12:12:57 -0500 |
commit | fdc18aae269d612d9a4fda6545f89aa3ee7f09a0 (patch) | |
tree | b33d472c26fedc846a1faff9f688b731d8297f27 /profile | |
parent | 8dc801597a3b7d5464580b55626d1ccd6c0a444b (diff) | |
download | rcm-fdc18aae269d612d9a4fda6545f89aa3ee7f09a0.tar.gz rcm-fdc18aae269d612d9a4fda6545f89aa3ee7f09a0.tar.bz2 rcm-fdc18aae269d612d9a4fda6545f89aa3ee7f09a0.zip |
Updates
Diffstat (limited to 'profile')
-rw-r--r-- | profile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,11 +1,10 @@ if [ -e /home/mccd/.nix-profile/etc/profile.d/nix.sh ]; then . /home/mccd/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer -export XDG_RUNTIME_DIR=/var/run/user/`id -u` export EDITOR="kak" export GDK_DPI_SCALE="1.5" export GDK_SCALE="1.5" export XCURSOR_SIZE="32" -export PF_INFO="ascii title os editor shell wm" +export PF_INFO="ascii title editor shell wm" export PF_ALIGN="5" export PF_COLOR="0" export PATH=${PATH}:~/.local/bin @@ -18,4 +17,5 @@ export TERM=xterm-256color test -r /home/mccd/.opam/opam-init/init.sh && . /home/mccd/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true +if [ "$(tty)" == "/dev/tty1" ]; then exec dbus-run-session startx; fi |