Compare commits
2 Commits
e6ffeafad4
...
1d65231984
| Author | SHA1 | Date |
|---|---|---|
|
|
1d65231984 | |
|
|
6deb38423f |
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue