Reorganize zsh/profile
This commit is contained in:
parent
9b209c974c
commit
70b4bad24d
1 changed files with 16 additions and 3 deletions
|
@ -1,4 +1,9 @@
|
||||||
* XDG
|
* Variables
|
||||||
|
|
||||||
|
Here we set some important variables that are used by other parts of the
|
||||||
|
configuration.
|
||||||
|
|
||||||
|
** XDG
|
||||||
|
|
||||||
I keep my XDG files in the normal place, but specifying them in an
|
I keep my XDG files in the normal place, but specifying them in an
|
||||||
environment variable makes things a little easier/clearer.
|
environment variable makes things a little easier/clearer.
|
||||||
|
@ -15,7 +20,7 @@
|
||||||
export XDG_DATA_HOME="${HOME}/.local/share"
|
export XDG_DATA_HOME="${HOME}/.local/share"
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
* PATH
|
** PATH
|
||||||
|
|
||||||
Add composer binaries to PATH.
|
Add composer binaries to PATH.
|
||||||
|
|
||||||
|
@ -36,7 +41,7 @@
|
||||||
export PATH
|
export PATH
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
* Dbus
|
** Dbus
|
||||||
|
|
||||||
Make the session bus address fixed so other processes can know where
|
Make the session bus address fixed so other processes can know where
|
||||||
to find it.
|
to find it.
|
||||||
|
@ -51,6 +56,14 @@
|
||||||
export DBUS_SESSION_BUS_ADDRESS
|
export DBUS_SESSION_BUS_ADDRESS
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
** .Net
|
||||||
|
|
||||||
|
I don't want to send any telemetry to Microsoft about my usage of the ~dotnet~ tool.
|
||||||
|
|
||||||
|
#+begin_src sh
|
||||||
|
export DOTNET_CLI_TELEMETRY_OPTOUT 1
|
||||||
|
#+end_src
|
||||||
|
|
||||||
* Systemd
|
* Systemd
|
||||||
|
|
||||||
Import some variables into the systemd environment so that services
|
Import some variables into the systemd environment so that services
|
||||||
|
|
Loading…
Reference in a new issue