move my personal small dot files to .local/share/

This commit is contained in:
NaiJi ✨ 2024-02-10 01:28:05 +04:00
parent 40339cde36
commit dd10f39a36
2 changed files with 7 additions and 7 deletions

View File

@ -15,8 +15,8 @@ general {
}
# order += "ipv6"
order += "read_file .now-playing"
order += "read_file .reminder"
order += "read_file now-playing"
order += "read_file reminder"
order += "volume master"
order += "wireless _first_"
order += "cpu_usage"
@ -29,12 +29,12 @@ order += "disk /home/naiji/Mounts/hdd2/"
order += "memory"
order += "tztime local"
read_file ".reminder" {
path = "/home/naiji/.reminder"
read_file "reminder" {
path = "/home/naiji/.local/share/i3status/reminder"
}
read_file ".now-playing" {
path = "/home/naiji/.now-playing"
read_file "now-playing" {
path = "/home/naiji/.local/share/i3status/now-playing"
}
cpu_usage {

View File

@ -2,6 +2,6 @@
while :
do
echo "$(mpc | head -n 1) " > /home/naiji/.now-playing
echo "$(mpc | head -n 1) " >/home/naiji/.local/share/i3status/now-playing
sleep 1
done