summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.xinitrc16
-rw-r--r--zsh/.zshrc15
2 files changed, 21 insertions, 10 deletions
diff --git a/.xinitrc b/.xinitrc
index b2f8a43..c78f35e 100644
--- a/.xinitrc
+++ b/.xinitrc
@@ -1,20 +1,22 @@
#!/bin/sh
# General Configurations
-setxkbmap gb
-export SHELL=/bin/zsh
-wmname LG3D & # For getting Java applications, e.g. Pycharm, Rider to work.
+setxkbmap gb # Set keyboard to gb layout
+export SHELL=/bin/zsh # Set shell to zsh
+wmname LG3D & # For getting Java applications, e.g. Pycharm, Rider to work.
# Programs for creating desktop
-dwmstatus & # Status bar
-picom & # Compositor
-
-randombg & # Set a random background.
+dwmstatus & # Status bar
+picom & # Compositor
# Programs to boot on startup
st &
librewolf &
+# Must go last
+randombg & # Set a random background. Update to changebg & once theming is complete.
+
+
while true
do
diff --git a/zsh/.zshrc b/zsh/.zshrc
index 803dc31..2383bae 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -9,6 +9,12 @@ bindkey -v
# The following lines were added by compinstall
zstyle :compinstall filename '/home/george/.zshrc'
+# Other general user config
+export LESSHISTFILE=/dev/null # Remove ~/.lesshst generation
+autoload -U colors && colors
+autoload -U promptinit && promptinit
+
+
# Changing Default Prompt
PROMPT='[%F{160}%n %F{93}%1d%f] $ '
@@ -16,13 +22,16 @@ PROMPT='[%F{160}%n %F{93}%1d%f] $ '
alias ls='ls -a --color=always'
alias exa="exa -a --header --long --git"
-alias mount-shared="sudo mount /dev/sda1 /mnt/Shared"
-alias mount-fedora="sudo mount /dev/sda5 /mnt/Fedora"
+alias mount-shared="[ \"$(findmnt | grep /mnt/Shared -c)\" = \"0\" ] && sudo mount /dev/sda1 /mnt/Shared ; echo \"$(findmnt | grep /mnt/Shared -c)\""
+alias mount-fedora="[ \"$(findmnt | grep /mnt/Fedora -c)\" = \"0\" ] && sudo mount /dev/sda5 /mnt/Fedora"
alias umount-shared="sudo umount /mnt/Shared"
alias umount-fedora="sudo umount /mnt/Fedora"
-alias lle="[ \"$(findmnt | grep /mnt/Shared -c)\" = \"1\" ] || mount-shared && mkdir -p /mnt/Shared/Text/daily-log/$(date +%Y-%m) && vim /mnt/Shared/Text/daily-log/$(date +%Y-%m)/L$(date --iso-8601).txt"
+alias lle="mount-shared ; mkdir -p /mnt/Shared/Text/daily-log/$(date +%Y-%m) ; nvim /mnt/Shared/Text/daily-log/$(date +%Y-%m)/L$(date --iso-8601).txt"
+alias fin="mount-shared ; libreoffice --calc /mnt/Shared/Trackers/Financial/new/$(date +%Y-%m).ods & "
+
+# Add command that open Month end entry for final month, at /mnt/Shared/Text/daily-log/ and previous months month then filename 2021-NN - How I Improved.txt
autoload -Uz compinit
compinit
# End of lines added by compinstall