Compare commits

...

2 Commits

Author SHA1 Message Date
Joshua Perry 1d65231984 added spotifyd.service 2023-07-14 19:50:17 +01:00
Joshua Perry 6deb38423f btop conf 2023-07-14 19:39:23 +01:00
3 changed files with 22 additions and 3 deletions

View File

@ -148,7 +148,7 @@ disks_filter = ""
mem_graphs = True mem_graphs = True
#* Show mem box below net box instead of above. #* Show mem box below net box instead of above.
mem_below_net = False mem_below_net = True
#* Count ZFS ARC in cached and available memory. #* Count ZFS ARC in cached and available memory.
zfs_arc_cached = True zfs_arc_cached = True
@ -178,7 +178,7 @@ disk_free_priv = False
show_io_stat = True show_io_stat = True
#* Toggles io mode for disks, showing big graphs for disk read/write speeds. #* Toggles io mode for disks, showing big graphs for disk read/write speeds.
io_mode = False io_mode = True
#* Set to True to show combined read/write io graphs in io mode. #* Set to True to show combined read/write io graphs in io mode.
io_graph_combined = False io_graph_combined = False

View File

@ -0,0 +1,15 @@
[Unit]
Description=A spotify playing daemon
Documentation=https://github.com/Spotifyd/spotifyd
Wants=sound.target
After=sound.target
Wants=network-online.target
After=network-online.target
[Service]
ExecStart=/usr/bin/spotifyd --no-daemon --verbose --config-path /home/r0r5chach/.config/spotifyd
Restart=always
RestartSec=12
[Install]
WantedBy=default.target

View File

@ -52,3 +52,7 @@ cp -r /home/$USER/.config/zsh $dot/home/$USER/.config/
cp /home/$USER/.config/code-flags.conf $dot/home/$USER/.config/ cp /home/$USER/.config/code-flags.conf $dot/home/$USER/.config/
cp /home/$USER/.config/electron-flags.conf $dot/home/$USER/.config/ cp /home/$USER/.config/electron-flags.conf $dot/home/$USER/.config/
cp /home/$USER/.config/spotifyd $dot/home/$USER/.config cp /home/$USER/.config/spotifyd $dot/home/$USER/.config
mkdir $dot/home/$USER/.config/systemd 2> /dev/null
mkdir $dot/home/$USER/.config/systemd/user 2> /dev/null
cp /home/$USER/.config/systemd/user/spotifyd.service