Select the types of activity you want to include in your feed.
Personal dotfiles for Linux, mostly for Nixpkgs/NixOS-based and Termux setups. Mirrored using GitLab's push mirroring feature.
gitlab.com/andreijiroh-dev/dotfiles
···11#!/usr/bin/env sh
22+# ~/.profile: executed by the command interpreter for login shells.
33+# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
44+# exists.
55+# see /usr/share/doc/bash/examples/startup-files for examples.
66+# the files are located in the bash-doc package.
77+88+# the default umask is set in /etc/profile; for setting the umask
99+# for ssh logins, install and configure the libpam-umask package.
1010+#umask 022
1111+212# if running bash
313if [ -n "$BASH_VERSION" ]; then
414 # include .bashrc if it exists
515 if [ -f "$HOME/.bashrc" ]; then
66- . "$HOME/.bashrc"
1616+ . "$HOME/.bashrc"
717 fi
818fi
9192020+# set PATH so it includes user's private bin if it exists
2121+if [ -d "$HOME/bin" ] ; then
2222+ PATH="$HOME/bin:$PATH"
2323+fi
2424+2525+# set PATH so it includes user's private bin if it exists
2626+if [ -d "$HOME/.local/bin" ] ; then
2727+ PATH="$HOME/.local/bin:$PATH"
2828+fi
2929+1030export PATH="/usr/local/bin:$HOME/.local/bin:$HOME/bin${PATH:+:}$PATH:$HOME/.local/share/JetBrains/Toolbox/scripts" # ~vern specifics and more
1131mesg n 2> /dev/null || true
1232···2040 . "$HOME/.config/localconfig.env"
2141fi
22422323-_byobu_sourced=1 . /usr/bin/byobu-launch 2>/dev/null || true
4343+if [[ $FF_BYOBU_ON_LOGIN != "" ]]; then
4444+ _byobu_sourced=1 . /usr/bin/byobu-launch 2>/dev/null || true
4545+fi