summaryrefslogtreecommitdiff
path: root/.shells
diff options
context:
space:
mode:
Diffstat (limited to '.shells')
-rw-r--r--.shells/alias.sh36
-rw-r--r--.shells/exports.sh18
-rwxr-xr-x.shells/prompt.sh14
3 files changed, 0 insertions, 68 deletions
diff --git a/.shells/alias.sh b/.shells/alias.sh
deleted file mode 100644
index f79e367..0000000
--- a/.shells/alias.sh
+++ /dev/null
@@ -1,36 +0,0 @@
-alias ll='ls -l'
-alias grep='grep --color=auto'
-
-alias vim='nvim'
-alias vi='nvim'
-
-#git
-alias ga='git add'
-alias gaa='git add .'
-alias gc='git commit -m'
-alias gp='git push -u origin'
-alias gpm='git push -u origin master'
-alias gpd='git push -u origin developer'
-alias gs='git status'
-
-#pacman | yay
-alias yeet='paru -Rsc'
-
-# weather
-alias weather="curl wttr.in"
-
-alias ls='ls -la --color'
-alias sb='sudo systemctl start bluetooth'
-alias mykeys='setxkbmap -option caps:escape'
-alias logout='pkill -U $USER'
-#alias neofetch='neofetch | lolcat'
-alias b='bluetoothctl'
-alias ba='bluetooth-autoconnect'
-alias music='mocp'
-alias ytd="yt-dlp"
-alias c="pavucontrol"
-alias r="ranger"
-alias klight="brightnessctl --device='tpacpi::kbd_backlight' set 1"
-
-##yarn
-alias sweb='BROWSER="firefox" yarn start'
diff --git a/.shells/exports.sh b/.shells/exports.sh
deleted file mode 100644
index 0febcb1..0000000
--- a/.shells/exports.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-# Export 'SHELL' to child processes. Programs such as 'screen'
-# honor it and otherwise use /bin/sh.
-export SHELL
-export PATH
-export EDITOR="emacsclient"
-export QT_QPA_PLATFORMTHEME="qt5ct"
-
-
-if [[ $- != *i* ]]
-then
- # We are being invoked from a non-interactive shell. If this
- # is an SSH session (as in "ssh host command"), source
- # /etc/profile so we get PATH and other essential variables.
- [[ -n "$SSH_CLIENT" ]] && source /etc/profile
-
- # Don't do anything else.
- return
-fi
diff --git a/.shells/prompt.sh b/.shells/prompt.sh
deleted file mode 100755
index d919457..0000000
--- a/.shells/prompt.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-
-# Pormpt
-
-
-
-# Adjust the prompt depending on whether we're in 'guix environment'.
-# if [ -n "$GUIX_ENVIRONMENT" ]
-# then
-# PS1='\u@\h \w [env]\$ '
-# else
-# PS1='\u@\h \w\$ '
-# fi
-
-