aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2021-07-07 13:39:55 +0200
committerKarel Kočí <cynerd@email.cz>2021-07-07 13:39:55 +0200
commit205e4caa14eb8c65bbef1acf9282eda2e199c6ac (patch)
treeb08fa14e012484758ada317767d07b7f33250e5b
parent471285387a248ccbc27c1376481dd8dee1ccb589 (diff)
downloadmyconfigs-205e4caa14eb8c65bbef1acf9282eda2e199c6ac.tar.gz
myconfigs-205e4caa14eb8c65bbef1acf9282eda2e199c6ac.tar.bz2
myconfigs-205e4caa14eb8c65bbef1acf9282eda2e199c6ac.zip
i3: use alacritty for notes and ssh-agent in profile
-rwxr-xr-xconfig/i3/scripts/notes2
-rw-r--r--profile2
2 files changed, 3 insertions, 1 deletions
diff --git a/config/i3/scripts/notes b/config/i3/scripts/notes
index dc13bb0..ee86725 100755
--- a/config/i3/scripts/notes
+++ b/config/i3/scripts/notes
@@ -2,7 +2,7 @@
cd ~/notes
find * -type f | dmenu -p 'notes' | while read -r note; do
nohup \
- urxvt -title 'notes-terminal-window' -e \
+ alacritty --title 'notes-terminal-window' -e \
vim +"set lines=26 columns=88" ~/notes/"$note" \
>/dev/null 2>&1 &
done
diff --git a/profile b/profile
index f57b934..8ea4bb2 100644
--- a/profile
+++ b/profile
@@ -14,6 +14,8 @@ export PYTHONPYCACHEPREFIX="$HOME/.cache/pycache"
# Start music player daemon
pgrep mpd >/dev/null || mpd ~/.config/mpd/mpd.conf
+# Start ssh-agent
+eval "$(ssh-agent -s)"
# And if we are on first terminal also automatically start x server
if [ "$(tty)" = "/dev/tty1" ]; then