sched managrment
This commit is contained in:
parent
ba83c862f1
commit
57945ac284
2 changed files with 8 additions and 1 deletions
2
bashrc
2
bashrc
|
@ -45,7 +45,6 @@ alias \
|
|||
ent="cd /mnt/Entr/ && ls" \
|
||||
fzf-edit-script="fzf_nav /home/$(whoami)/.config/scripts" \
|
||||
ls="exa -al --group-directories-first" \
|
||||
sched="cat ~/Documents/schedule.txt" \
|
||||
fzf="fzf --cycle --reverse" \
|
||||
newsboat="newsboat -u ~/Documents/personal/rss" \
|
||||
diff="diff --color=auto" \
|
||||
|
@ -62,6 +61,7 @@ alias \
|
|||
export \
|
||||
GITLAB="ssh://git@gitlab.com/tavo-wasd" \
|
||||
QT_QPA_PLATFORMTHEME="qt6ct" \
|
||||
WEEK=$(date '+%U') \
|
||||
DATE=$(date -I) \
|
||||
|
||||
# DE opts
|
||||
|
|
7
scripts/sched
Executable file
7
scripts/sched
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
WEEK=$(date '+%U')
|
||||
|
||||
[ -e "/home/$USER/Documents/personal/sched-$WEEK" ] && sched.py print ~/Documents/personal/sched-$WEEK && exit
|
||||
|
||||
echo "No sched-$WEEK found in ~/Documents/personal/"
|
Loading…
Reference in a new issue