Compare commits
7 Commits
3e66e37aad
...
85ca7b97e4
Author | SHA1 | Date |
---|---|---|
ktyl | 85ca7b97e4 | |
ktyl | 47395292cd | |
ktyl | c4f5e6ee25 | |
ktyl | 2ac297bd1c | |
ktyl | d150f3b40f | |
ktyl | 0e85014f42 | |
ktyl | 4d3c14277d |
|
@ -1 +1,2 @@
|
|||
cache.db
|
||||
history.cmdline
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
nb="~/.newsboat"
|
||||
|
||||
alias nb="newsboat"
|
||||
alias nbn="newsboat -u $nb/urls-news-pipe"
|
||||
alias nbf="newsboat -u $nb/urls-friends"
|
||||
alias nbn="newsboat -u $nb/urls-news-pipe -c $nb/cache-news.db"
|
||||
alias nbf="newsboat -u $nb/urls-friends -c $nb/cache-friends.db"
|
||||
|
|
|
@ -5,13 +5,10 @@ https://dynomight.substack.com/feed
|
|||
https://esoteric.codes/rss
|
||||
https://garry.blog/feed
|
||||
https://hadarford.blogspot.com/rss.xml
|
||||
https://hnrss.org/frontpage
|
||||
https://idlewords.com/index.xml
|
||||
https://ktyl.dev/blog/index.xml
|
||||
https://lord.re/posts/index.xml
|
||||
https://maggieappleton.com/rss.xml
|
||||
https://myst.rs/blog/feed.xml
|
||||
https://nasablueberry.com/feed/
|
||||
https://ploum.net/atom_en.xml
|
||||
https://ploum.net/atom_fr.xml
|
||||
https://qntm.org/rss.php?blog
|
||||
|
|
|
@ -2,4 +2,5 @@ https://adichandra.in/feed/
|
|||
https://alvinpab.com/rss.xml
|
||||
https://billyeatcookies.github.io/feed
|
||||
https://blog.oliverbooth.dev/feed
|
||||
https://myst.rs/blog/feed.xml
|
||||
https://reese.ovine.xyz/feed.rss
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
https://www.nasaspaceflight.com/feed/
|
||||
https://hnrss.org/frontpage
|
||||
https://nasaspaceflight.com/feed/
|
||||
https://phys.org/rss-feed/breaking/space-news
|
||||
https://thequietus.com/feed
|
||||
|
|
|
@ -1,20 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
export BAR_VISIBILITY=$CONFIG/polybar/.visible
|
||||
[[ -f $BAR_VISIBILITY ]] && rm $BAR_VISIBILITY
|
||||
|
||||
# create a file to keep track of the bar's visibility
|
||||
# file exists -> bar visible
|
||||
# file doesnt exist -> bar hidden
|
||||
#touch $BAR_VISIBILITY
|
||||
|
||||
# terminate already running bar instances
|
||||
killall -q polybar
|
||||
|
||||
# wait until the processes have been shut down
|
||||
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
|
||||
|
||||
# launch bar
|
||||
polybar example & # launch bar
|
||||
|
||||
#touch $BAR_VISIBILITY
|
||||
. "$HOME/src/dwm-bar/dwm_bar.sh"
|
||||
|
|
|
@ -1,21 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
visible=$CONFIG/polybar/.visible
|
||||
barheight=27
|
||||
padding=0
|
||||
|
||||
if [ -f $visible ]; then
|
||||
polybar-msg cmd hide
|
||||
rm $visible
|
||||
else
|
||||
#bspc config top_padding ((padding+$barheight))
|
||||
polybar-msg cmd show
|
||||
((padding=padding+barheight))
|
||||
touch $visible
|
||||
fi
|
||||
|
||||
bspc config top_padding $padding
|
||||
|
||||
|
||||
|
||||
|
6
.xinitrc
6
.xinitrc
|
@ -9,7 +9,7 @@ xsetroot -cursor_name left_ptr
|
|||
xbanish &
|
||||
|
||||
# set keyboard layout, map caps lock to ctrl and esc
|
||||
setxkbmap gb
|
||||
sh $SCRIPTS/kbd/kbfr
|
||||
sh $SCRIPTS/kbd/capsctrl
|
||||
|
||||
# keybinds
|
||||
|
@ -27,7 +27,9 @@ udiskie &
|
|||
# notifications
|
||||
dunst &
|
||||
|
||||
dwmstatus &
|
||||
# status bar
|
||||
#dwmstatus &
|
||||
sh "$HOME/src/dwm-bar/dwm_bar.sh" &
|
||||
|
||||
# start window manager
|
||||
exec dwm
|
||||
|
|
15
.zshrc
15
.zshrc
|
@ -1,6 +1,5 @@
|
|||
export CONFIG=$HOME/.config
|
||||
export PROJECTS=$HOME/prj
|
||||
export GOPATH=$PROJECTS/go
|
||||
|
||||
export PATH=$PATH:$GOPATH/bin
|
||||
export PATH=$PATH:$HOME/bin
|
||||
|
@ -11,16 +10,18 @@ export PATH=$PATH:$HOME/.local/share/gem/ruby/3.0.0/bin
|
|||
export SCRIPTS=$HOME/.scripts
|
||||
source $SCRIPTS/include.sh
|
||||
source $SCRIPTS/func.sh
|
||||
source $HOME/git/include.sh
|
||||
|
||||
export TERMINAL=/usr/bin/kitty
|
||||
export EDITOR=/usr/bin/nvim
|
||||
export ZSH=$HOME/.oh-my-zsh
|
||||
|
||||
export WTTRURL="wttr.in/?0"
|
||||
# start ssh-agent automatically
|
||||
ssh-agent >/dev/null
|
||||
eval $(ssh-agent -s) >/dev/null
|
||||
|
||||
# zsh stuff
|
||||
export FFF_HIDDEN=1
|
||||
|
||||
export WTTRURL="wttr.in/?0"
|
||||
export ZSH=$HOME/.oh-my-zsh
|
||||
export XDG_CACHE_HOME=$HOME/.cache
|
||||
|
||||
ZSH_THEME="sunaku"
|
||||
|
@ -36,7 +37,3 @@ if [ -f ~/.zsh_aliases ]; then
|
|||
. ~/.zsh_aliases
|
||||
fi
|
||||
|
||||
# start ssh-agent automatically
|
||||
ssh-agent
|
||||
eval $(ssh-agent -s)
|
||||
clear
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Subproject commit 625670e789f9a9ec7e0cf473d43f5c34f051b1e0
|
Loading…
Reference in New Issue