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
#* 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.
zfs_arc_cached = True
@ -178,7 +178,7 @@ disk_free_priv = False
show_io_stat = True
#* 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.
io_graph_combined = False
@ -209,4 +209,4 @@ selected_battery = "Auto"
#* Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG".
#* The level set includes all lower levels, i.e. "DEBUG" will show all logging info.
log_level = "WARNING"
log_level = "WARNING"

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/electron-flags.conf $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