Compare commits

...

7 commits

7 changed files with 26 additions and 8 deletions

View file

@ -224,7 +224,6 @@ mold
moreutils moreutils
mpc mpc
mpd mpd
mpdas
mpdris2 mpdris2
mpv mpv
msmtp msmtp
@ -303,6 +302,7 @@ refind
reflector reflector
reiserfsprogs reiserfsprogs
repo repo
rescrobbled-git
ripgrep ripgrep
rmtrash rmtrash
rp-pppoe rp-pppoe

View file

@ -0,0 +1,6 @@
function pfp --description 'Select a process to run perf top'
set proc (ps -ef | fzf | awk '{print $2}')
if test -n "$proc"
perf top -p $proc
end
end

View file

@ -1,6 +1,6 @@
function pft --description 'Select a process to run perf top' function pft --description 'Select a thread to run perf top'
set proc (ps -ef | fzf | awk '{print $2}') set tid (ps -eLf | fzf | awk '{print $4}')
if test -n "$proc" if test -n "$tid"
perf top -p $proc perf top -t $tid
end end
end end

View file

@ -2,15 +2,15 @@ set confirm off
set breakpoint pending on set breakpoint pending on
set print pretty on set print pretty on
set auto-load safe-path / set auto-load safe-path /
add-auto-load-safe-path ~/GitSources/gstreamer/.gdbinit ~/.gdbinit.d/scripts
set auto-load python-scripts on set auto-load python-scripts on
set auto-load local-gdbinit set auto-load local-gdbinit
set pagination off set pagination off
set logging file /tmp/gdb.txt
set logging enabled on set logging enabled on
set logging overwrite on set logging overwrite on
set mi-async on set mi-async on
set non-stop off set non-stop off
add-auto-load-safe-path ~/GitSources/gstreamer/.gdbinit ~/.gdbinit.d/scripts
set auto-load python-scripts on
set debuginfod enabled off set debuginfod enabled off
alias -a it = info threads alias -a it = info threads

View file

@ -26,7 +26,7 @@ idle_bg = "#000000"
[[block]] [[block]]
block = "cpu" block = "cpu"
interval = 5 interval = 5
format = " $icon $barchart $utilization $frequency $boost " format = " $icon $utilization $frequency $boost "
[[block]] [[block]]
block = "memory" block = "memory"

View file

@ -1,5 +1,6 @@
follow_now_playing_lyrics = no follow_now_playing_lyrics = no
fetch_lyrics_for_current_song_in_background = no fetch_lyrics_for_current_song_in_background = no
media_library_hide_album_dates = yes
mpd_music_dir = ~/Music mpd_music_dir = ~/Music
startup_screen = media_library startup_screen = media_library
store_lyrics_in_song_dir = no store_lyrics_in_song_dir = no

View file

@ -0,0 +1,11 @@
[Unit]
Description=An MPRIS scrobbler
Documentation=https://github.com/InputUsername/rescrobbled
Wants=network-online.target
After=network-online.target
[Service]
ExecStart=rescrobbled
[Install]
WantedBy=default.target