diff options
author | Karel Kočí <cynerd@email.cz> | 2021-07-07 13:39:55 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2021-07-07 13:39:55 +0200 |
commit | 205e4caa14eb8c65bbef1acf9282eda2e199c6ac (patch) | |
tree | b08fa14e012484758ada317767d07b7f33250e5b | |
parent | 471285387a248ccbc27c1376481dd8dee1ccb589 (diff) | |
download | myconfigs-205e4caa14eb8c65bbef1acf9282eda2e199c6ac.tar.gz myconfigs-205e4caa14eb8c65bbef1acf9282eda2e199c6ac.tar.bz2 myconfigs-205e4caa14eb8c65bbef1acf9282eda2e199c6ac.zip |
i3: use alacritty for notes and ssh-agent in profile
-rwxr-xr-x | config/i3/scripts/notes | 2 | ||||
-rw-r--r-- | profile | 2 |
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 @@ -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 |