From e9ce921f52ff0c6f13c79504e2f065eb35d2ab41 Mon Sep 17 00:00:00 2001 From: azpsen Date: Mon, 29 Jan 2024 08:39:18 -0600 Subject: [PATCH] remove util script, fix symbols --- .bashrc | 2 ++ .config/polybar/config.ini | 2 +- .config/polybar/scripts/move_sh_files.sh | 16 ---------------- 3 files changed, 3 insertions(+), 17 deletions(-) delete mode 100755 .config/polybar/scripts/move_sh_files.sh diff --git a/.bashrc b/.bashrc index 4322bcd..b8698f1 100644 --- a/.bashrc +++ b/.bashrc @@ -29,6 +29,8 @@ alias pf='pfetch' # env # # --- # +export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket" + export HISTFILE=~/.history export HISTSIZE=5000 diff --git a/.config/polybar/config.ini b/.config/polybar/config.ini index 6549672..92fd32b 100644 --- a/.config/polybar/config.ini +++ b/.config/polybar/config.ini @@ -160,7 +160,7 @@ label = %title:0:60:...% [module/music] type = custom/script -exec = ~/.config/polybar/scripts/player-mpris-tail.py -f '%{F#A7C080}{icon}%{F-} {artist} - %{F#8ABEB7}{title}' --icon-playing  --icon-paused  --icon-none 󰎊 --icon-stopped  +exec = ~/.config/polybar/scripts/player-mpris-tail.py -f '%{F#A7C080}{icon}%{F-} {artist} - %{F#8ABEB7}{title}' --icon-playing 󰎈 --icon-paused  --icon-none 󰎊 --icon-stopped  tail = true click-middle = ~/.config/polybar/scripts/player-mpris-tail.py previous & click-right = ~/.config/polybar/scripts/player-mpris-tail.py next & diff --git a/.config/polybar/scripts/move_sh_files.sh b/.config/polybar/scripts/move_sh_files.sh deleted file mode 100755 index 96a6954..0000000 --- a/.config/polybar/scripts/move_sh_files.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash - -# Loop through each subdirectory -for dir in */; do - # Navigate into the subdirectory - cd "$dir" || continue - - # Find all .sh files and move them to the parent directory - find . -type f -name "*.sh" -exec mv {} .. \; - - # Delete all other files and directories - rm -rf * - - # Go back to the parent directory - cd .. -done