From d5c8c440386043882efdeed220f69e316eba3f02 Mon Sep 17 00:00:00 2001 From: dogeystamp Date: Mon, 12 Aug 2024 16:19:12 -0400 Subject: [PATCH] cleanup unused dots --- .../mpv/scripts/youtube-quality.lua | 275 ------------------ src/dot_config/msmtp/config | 11 - src/dot_config/ncmpcpp/bindings | 40 --- src/dot_config/ncmpcpp/config | 92 ------ .../nvim/site/pack/3pp/opt/.chezmoiignore | 4 + 5 files changed, 4 insertions(+), 418 deletions(-) delete mode 100644 src/dot_config/mpv/scripts/youtube-quality.lua delete mode 100644 src/dot_config/msmtp/config delete mode 100644 src/dot_config/ncmpcpp/bindings delete mode 100644 src/dot_config/ncmpcpp/config create mode 100644 src/dot_local/share/nvim/site/pack/3pp/opt/.chezmoiignore diff --git a/src/dot_config/mpv/scripts/youtube-quality.lua b/src/dot_config/mpv/scripts/youtube-quality.lua deleted file mode 100644 index b587f37..0000000 --- a/src/dot_config/mpv/scripts/youtube-quality.lua +++ /dev/null @@ -1,275 +0,0 @@ --- youtube-quality.lua --- --- Change youtube video quality on the fly. --- --- Diplays a menu that lets you switch to different ytdl-format settings while --- you're in the middle of a video (just like you were using the web player). --- --- Bound to ctrl-f by default. - -local mp = require 'mp' -local utils = require 'mp.utils' -local msg = require 'mp.msg' -local assdraw = require 'mp.assdraw' - -local opts = { - --key bindings - toggle_menu_binding = "ctrl+f", - up_binding = "UP", - down_binding = "DOWN", - select_binding = "ENTER", - - --formatting / cursors - selected_and_active = "▶ - ", - selected_and_inactive = "● - ", - unselected_and_active = "▷ - ", - unselected_and_inactive = "○ - ", - - --font size scales by window, if false requires larger font and padding sizes - scale_playlist_by_window=false, - - --playlist ass style overrides inside curly brackets, \keyvalue is one field, extra \ for escape in lua - --example {\\fnUbuntu\\fs10\\b0\\bord1} equals: font=Ubuntu, size=10, bold=no, border=1 - --read http://docs.aegisub.org/3.2/ASS_Tags/ for reference of tags - --undeclared tags will use default osd settings - --these styles will be used for the whole playlist. More specific styling will need to be hacked in - -- - --(a monospaced font is recommended but not required) - style_ass_tags = "{\\fnmonospace}", - - --paddings for top left corner - text_padding_x = 5, - text_padding_y = 5, - - --other - menu_timeout = 10, - - --use youtube-dl to fetch a list of available formats (overrides quality_strings) - fetch_formats = true, - - --default menu entries - quality_strings=[[ - [ - {"4320p" : "bestvideo[height<=?4320p]+bestaudio/best"}, - {"2160p" : "bestvideo[height<=?2160]+bestaudio/best"}, - {"1440p" : "bestvideo[height<=?1440]+bestaudio/best"}, - {"1080p" : "bestvideo[height<=?1080]+bestaudio/best"}, - {"720p" : "bestvideo[height<=?720]+bestaudio/best"}, - {"480p" : "bestvideo[height<=?480]+bestaudio/best"}, - {"360p" : "bestvideo[height<=?360]+bestaudio/best"}, - {"240p" : "bestvideo[height<=?240]+bestaudio/best"}, - {"144p" : "bestvideo[height<=?144]+bestaudio/best"} - ] - ]], -} -(require 'mp.options').read_options(opts, "youtube-quality") -opts.quality_strings = utils.parse_json(opts.quality_strings) - -local destroyer = nil - - -function show_menu() - local selected = 1 - local active = 0 - local current_ytdl_format = mp.get_property("ytdl-format") - msg.verbose("current ytdl-format: "..current_ytdl_format) - local num_options = 0 - local options = {} - - - if opts.fetch_formats then - options, num_options = download_formats() - end - - if next(options) == nil then - for i,v in ipairs(opts.quality_strings) do - num_options = num_options + 1 - for k,v2 in pairs(v) do - options[i] = {label = k, format=v2} - if v2 == current_ytdl_format then - active = i - selected = active - end - end - end - end - - --set the cursor to the currently format - for i,v in ipairs(options) do - if v.format == current_ytdl_format then - active = i - selected = active - break - end - end - - function selected_move(amt) - selected = selected + amt - if selected < 1 then selected = num_options - elseif selected > num_options then selected = 1 end - timeout:kill() - timeout:resume() - draw_menu() - end - function choose_prefix(i) - if i == selected and i == active then return opts.selected_and_active - elseif i == selected then return opts.selected_and_inactive end - - if i ~= selected and i == active then return opts.unselected_and_active - elseif i ~= selected then return opts.unselected_and_inactive end - return "> " --shouldn't get here. - end - - function draw_menu() - local ass = assdraw.ass_new() - - ass:pos(opts.text_padding_x, opts.text_padding_y) - ass:append(opts.style_ass_tags) - - for i,v in ipairs(options) do - ass:append(choose_prefix(i)..v.label.."\\N") - end - - local w, h = mp.get_osd_size() - if opts.scale_playlist_by_window then w,h = 0, 0 end - mp.set_osd_ass(w, h, ass.text) - end - - function destroy() - timeout:kill() - mp.set_osd_ass(0,0,"") - mp.remove_key_binding("move_up") - mp.remove_key_binding("move_down") - mp.remove_key_binding("select") - mp.remove_key_binding("escape") - destroyer = nil - end - timeout = mp.add_periodic_timer(opts.menu_timeout, destroy) - destroyer = destroy - - mp.add_forced_key_binding(opts.up_binding, "move_up", function() selected_move(-1) end, {repeatable=true}) - mp.add_forced_key_binding(opts.down_binding, "move_down", function() selected_move(1) end, {repeatable=true}) - mp.add_forced_key_binding(opts.select_binding, "select", function() - destroy() - mp.set_property("ytdl-format", options[selected].format) - reload_resume() - end) - mp.add_forced_key_binding(opts.toggle_menu_binding, "escape", destroy) - - draw_menu() - return -end - -local ytdl = { - path = "youtube-dl", - searched = false, - blacklisted = {} -} - -format_cache={} -function download_formats() - local function exec(args) - local ret = utils.subprocess({args = args}) - return ret.status, ret.stdout, ret - end - - local function table_size(t) - s = 0 - for i,v in ipairs(t) do - s = s+1 - end - return s - end - - local url = mp.get_property("path") - - url = string.gsub(url, "ytdl://", "") -- Strip possible ytdl:// prefix. - - -- don't fetch the format list if we already have it - if format_cache[url] ~= nil then - local res = format_cache[url] - return res, table_size(res) - end - mp.osd_message("fetching available formats with youtube-dl...", 60) - - if not (ytdl.searched) then - local ytdl_mcd = mp.find_config_file("youtube-dl") - if not (ytdl_mcd == nil) then - msg.verbose("found youtube-dl at: " .. ytdl_mcd) - ytdl.path = ytdl_mcd - end - ytdl.searched = true - end - - local command = {ytdl.path, "--no-warnings", "--no-playlist", "-J"} - table.insert(command, url) - local es, json, result = exec(command) - - if (es < 0) or (json == nil) or (json == "") then - mp.osd_message("fetching formats failed...", 1) - msg.error("failed to get format list: " .. err) - return {}, 0 - end - - local json, err = utils.parse_json(json) - - if (json == nil) then - mp.osd_message("fetching formats failed...", 1) - msg.error("failed to parse JSON data: " .. err) - return {}, 0 - end - - res = {} - msg.verbose("youtube-dl succeeded!") - for i,v in ipairs(json.formats) do - if v.vcodec ~= "none" then - local fps = v.fps and v.fps.."fps" or "" - local resolution = string.format("%sx%s", v.width, v.height) - local l = string.format("%-9s %-5s (%-4s / %s)", resolution, fps, v.ext, v.vcodec) - local f = string.format("%s+bestaudio/best", v.format_id) - table.insert(res, {label=l, format=f, width=v.width }) - end - end - - table.sort(res, function(a, b) return a.width > b.width end) - - mp.osd_message("", 0) - format_cache[url] = res - return res, table_size(res) -end - - --- register script message to show menu -mp.register_script_message("toggle-quality-menu", -function() - if destroyer ~= nil then - destroyer() - else - show_menu() - end -end) - --- keybind to launch menu -mp.add_key_binding(opts.toggle_menu_binding, "quality-menu", show_menu) - --- special thanks to reload.lua (https://github.com/4e6/mpv-reload/) -function reload_resume() - local playlist_pos = mp.get_property_number("playlist-pos") - local reload_duration = mp.get_property_native("duration") - local time_pos = mp.get_property("time-pos") - - mp.set_property_number("playlist-pos", playlist_pos) - - -- Tries to determine live stream vs. pre-recordered VOD. VOD has non-zero - -- duration property. When reloading VOD, to keep the current time position - -- we should provide offset from the start. Stream doesn't have fixed start. - -- Decent choice would be to reload stream from it's current 'live' positon. - -- That's the reason we don't pass the offset when reloading streams. - if reload_duration and reload_duration > 0 then - local function seeker() - mp.commandv("seek", time_pos, "absolute") - mp.unregister_event(seeker) - end - mp.register_event("file-loaded", seeker) - end -end diff --git a/src/dot_config/msmtp/config b/src/dot_config/msmtp/config deleted file mode 100644 index 1bc707f..0000000 --- a/src/dot_config/msmtp/config +++ /dev/null @@ -1,11 +0,0 @@ -account mail -host disroot.org -port 587 -protocol smtp -auth on -user dogeystamp@disroot.org -from dogeystamp@disroot.org -tls on -tls_starttls on -tls_trust_file /etc/ssl/certs/ca-certificates.crt -passwordeval "pass msg/mail/dogeystamp@disroot.org" diff --git a/src/dot_config/ncmpcpp/bindings b/src/dot_config/ncmpcpp/bindings deleted file mode 100644 index 6d6034d..0000000 --- a/src/dot_config/ncmpcpp/bindings +++ /dev/null @@ -1,40 +0,0 @@ -def_key "t" - find -def_key "t" - find_item_forward - -def_key "+" - show_clock -def_key "=" - volume_up - -def_key "j" - scroll_down -def_key "k" - scroll_up - -def_key "ctrl-u" - page_up -#push_characters "kkkkkkkkkkkkkkk" -def_key "ctrl-d" - page_down -#push_characters "jjjjjjjjjjjjjjj" - -def_key "h" - previous_column -def_key "l" - next_column - -def_key "." - show_lyrics - -def_key "n" - next_found_item -def_key "N" - previous_found_item - -# not used but bound -def_key "J" - move_sort_order_down -def_key "K" - move_sort_order_up diff --git a/src/dot_config/ncmpcpp/config b/src/dot_config/ncmpcpp/config deleted file mode 100644 index 0f3147a..0000000 --- a/src/dot_config/ncmpcpp/config +++ /dev/null @@ -1,92 +0,0 @@ -## -# Files - mpd_music_dir = "~/med/mus" - lyrics_directory = ~/.cache/lyrics - ncmpcpp_directory = ~/.config/ncmpcpp - mpd_host = "localhost" - mpd_port = "6600" - mpd_connection_timeout = "5" - mpd_crossfade_time = "2" - - # Playlist - playlist_disable_highlight_delay = "0" - playlist_display_mode = "columns" - playlist_show_remaining_time = "yes" - - browser_display_mode = "columns" - autocenter_mode = "yes" - fancy_scrolling = "yes" - follow_now_playing_lyrics = "yes" - display_screens_numbers_on_start = "yes" - ignore_leading_the = "yes" - lyrics_database = "1" - song_columns_list_format = "(10)[blue]{l} (30)[green]{a} (30)[magenta]{b} (50)[yellow]{t}" - colors_enabled = "yes" - main_window_color = "white" - main_window_highlight_color = "blue" - header_window_color = "cyan" - volume_color = "red" - progressbar_color = "cyan" - statusbar_color = "white" - active_column_color = "cyan" - active_window_border = "blue" - -alternative_header_first_line_format = "$0$aqqu$/a {$7%a - $9}{$5%t$9}|{$8%f$9} $0$atqq$/a$9" -alternative_header_second_line_format = "{{$6%b$9}{ [$6%y$9]}}|{%D}" -song_list_format = "{$3%n │ $9}{$7%a - $9}{$5%t$9}|{$8%f$9}$R{$6 │ %b$9}{$3 │ %l$9}" -#user_interface = "alternative" -user_interface = "classic" -default_place_to_search_in = "database" - - -# visualizer -visualizer_fifo_path = "/tmp/mpd.fifo" -visualizer_output_name = "my_fifo" -visualizer_sync_interval = "10" -visualizer_color = white -#visualizer_type = "wave" (spectrum/wave) -visualizer_type = "wave_filled" (spectrum/wave) -visualizer_in_stereo = "yes" -visualizer_look = "=|" - - -## Navigation ## -cyclic_scrolling = "yes" -header_text_scrolling = "yes" -jump_to_now_playing_song_at_start = "yes" -lines_scrolled = "2" - -## Other ## -system_encoding = "utf-8" -regular_expressions = "extended" - - - -## Selected tracks ## -selected_item_prefix = "* " -discard_colors_if_item_is_selected = "no" - -## Seeking ## -incremental_seeking = "yes" -seek_time = "1" - -## Visivility ## -header_visibility = "yes" -statusbar_visibility = "yes" -titles_visibility = "yes" - - -progressbar_look = "=>-" -progressbar_elapsed_color = "white" - -now_playing_prefix = "> " -song_status_format = " $2%a $4⟫$3⟫ $8%t $4⟫$3⟫ $5%b " -autocenter_mode = "yes" -centered_cursor = "yes" - -# Misc -display_bitrate = "yes" -# enable_window_title = "no" -follow_now_playing_lyrics = "yes" -ignore_leading_the = "yes" -empty_tag_marker = "" diff --git a/src/dot_local/share/nvim/site/pack/3pp/opt/.chezmoiignore b/src/dot_local/share/nvim/site/pack/3pp/opt/.chezmoiignore new file mode 100644 index 0000000..3ead545 --- /dev/null +++ b/src/dot_local/share/nvim/site/pack/3pp/opt/.chezmoiignore @@ -0,0 +1,4 @@ +nvim-treesitter/parser/** +nvim-treesitter/parser +nvim-treesitter/parser-info/** +nvim-treesitter/parser-info