Automated update

This commit is contained in:
klein panic
2024-11-27 10:13:20 -05:00
parent 8e62ae505f
commit c15409e848
45 changed files with 5507 additions and 109 deletions

1
.gitignore vendored
View File

@@ -1,2 +1,3 @@
gh/
setup/
spotifyd/

View File

@@ -1,7 +1,7 @@
[FileDialog]
history=file:///home/klein/Videos/TV Show, file:///home/klein/Videos/TV Show/breakingbad/brba, file:///home/klein/Videos/TV Show/breakingbad/brba/season5, file:///home/klein/Videos/TV Show/breakingbad/brba/season2, file:///home/klein/Music/Yacht Rock, file:///home/klein/codeWS/Python3/camera-operation
lastVisited=file:///home/klein/codeWS/Python3/camera-operation
qtVersion=5.15.0
history=file:///home/klein/Videos/TV Show/breakingbad/brba/season5, file:///home/klein/Videos/TV Show/breakingbad/brba/season2, file:///home/klein/Music/Yacht Rock, file:///home/klein/codeWS/Python3/camera-operation, file:///home/klein/Downloads
lastVisited=file:///home/klein/Downloads
qtVersion=5.15.8
shortcuts=file:, file:///home/klein
sidebarWidth=90
treeViewHeader=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\x1\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1\xec\0\0\0\x4\x1\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\x4\0\0\0\xff\0\0\0\x1\0\0\0\0\0\0\0?\0\0\0\x1\0\0\0\0\0\0\0@\0\0\0\x1\0\0\0\0\0\0\0n\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\xff\xff\xff\xff)

View File

View File

@@ -0,0 +1,7 @@
# Default configuration for battery_monitor
ignore_processes_for_sleep=vi,neovim,vim
threshold_low=15
threshold_critical=5
threshold_high=80

View File

@@ -1 +0,0 @@
ignore_processes_for_sleep=vi,neovim,vim

View File

@@ -1,4 +1,4 @@
fehbg=feh --no-fehbg --bg-scale '/home/klein/Pictures/backgrounds/space.jpg'
fehbg=fehbg
caffeine-indicator=caffeine-indicator
volumeicon=volumeicon
picom=picom --config ~/.config/picom/picom.conf

View File

@@ -1,2 +1,2 @@
[settings]
stocks=AAPL,AMZN,META,GOOG
stocks=AAPL,AMZN,META,GOOG,VZ,INTC,X,T

Binary file not shown.

View File

View File

@@ -0,0 +1 @@
1

3
kanyesay/config.conf Normal file
View File

@@ -0,0 +1,3 @@
wrap_width=50
thought_bubble=0
selected_kanye=1

View File

@@ -1,4 +1,4 @@
gesture swipe left 3 /usr/local/bin/switch_tag prev
gesture swipe right 3 /usr/local/bin/switch_tag next
gesture swipe up /usr/local/bin/skipp-manager start
gesture swipe up /usr/local/bin/skippy-manager start
gesture swipe down /usr/local/bin/skippy-manager stop

View File

@@ -0,0 +1 @@
start=0.054810

View File

@@ -0,0 +1,6 @@
function c()
nn('<c-n>', ":w<cr>:!gcc '%' -o '%:r' -lm -O3 && ./'%:r'<cr>")
nn('<c-p>', ":w<cr>:make<cr>")
end
c()

View File

@@ -157,6 +157,7 @@ packer.startup(function(use)
run = ':TSUpdate',
config = function()
require'nvim-treesitter.configs'.setup {
ensure_installed = { "go", "lua", "python", "rust" }, -- add Go and any other languages you need
highlight = {
enable = true,
},
@@ -184,6 +185,22 @@ end)
-- LSP settings
local lspconfig = require('lspconfig')
-- Set up 'gopls' and other language servers
lspconfig.gopls.setup {
on_attach = on_attach,
settings = {
gopls = {
analyses = {
unusedparams = true,
shadow = true,
},
staticcheck = true,
},
},
init_options = {
verboseOutput = true,
}
}
local on_attach = function(client, bufnr)
local function buf_set_keymap(...) vim.api.nvim_buf_set_keymap(bufnr, ...) end
local function buf_set_option(...) vim.api.nvim_buf_set_option(bufnr, ...) end
@@ -212,7 +229,7 @@ local on_attach = function(client, bufnr)
end
-- Enable the following language servers
local servers = { 'pyright', 'tsserver', 'gopls', 'rust_analyzer' }
local servers = { 'pyright', 'ts_ls', 'gopls', 'rust_analyzer' }
for _, lsp in ipairs(servers) do
lspconfig[lsp].setup {
on_attach = on_attach,
@@ -263,6 +280,33 @@ local associations = {
{ '*.ino' , { arduino } },
}
-- Create an augroup for Rust-specific settings
vim.api.nvim_create_augroup('RustGroup', { clear = true })
-- Define autocmds that apply only for Rust files
vim.api.nvim_create_autocmd('FileType', {
group = 'RustGroup',
pattern = 'rust',
callback = function()
-- Keybinding for running rustfmt (formatting)
vim.api.nvim_buf_set_keymap(0, 'n', '<leader>rf', ':lua vim.lsp.buf.format()<CR>', { noremap = true, silent = true })
-- Keybinding for running Clippy (linting)
vim.api.nvim_buf_set_keymap(0, 'n', '<leader>rc', ':!cargo clippy<CR>', { noremap = true, silent = true })
-- Keybinding to build Rust project
vim.api.nvim_buf_set_keymap(0, 'n', '<leader>rb', ':!cargo build<CR>', { noremap = true, silent = true })
-- Keybinding to run Rust project
vim.api.nvim_buf_set_keymap(0, 'n', '<leader>rr', ':!cargo run<CR>', { noremap = true, silent = true })
-- Show diagnostics (errors/warnings) in Rust
vim.api.nvim_buf_set_keymap(0, 'n', '<leader>rd', ':lua vim.diagnostic.open_float()<CR>', { noremap = true, silent = true })
print("Rust-specific keybindings loaded!")
end
})
for _, assoc in ipairs(associations) do
local pattern = assoc[1]
local callbacks = assoc[2]

View File

@@ -49,8 +49,8 @@ local function save_profiles(threshold)
end
time([[Luarocks path setup]], true)
local package_path_str = "/root/.cache/nvim/packer_hererocks/2.1.1716656478/share/lua/5.1/?.lua;/root/.cache/nvim/packer_hererocks/2.1.1716656478/share/lua/5.1/?/init.lua;/root/.cache/nvim/packer_hererocks/2.1.1716656478/lib/luarocks/rocks-5.1/?.lua;/root/.cache/nvim/packer_hererocks/2.1.1716656478/lib/luarocks/rocks-5.1/?/init.lua"
local install_cpath_pattern = "/root/.cache/nvim/packer_hererocks/2.1.1716656478/lib/lua/5.1/?.so"
local package_path_str = "/home/klein/.cache/nvim/packer_hererocks/2.1.1716656478/share/lua/5.1/?.lua;/home/klein/.cache/nvim/packer_hererocks/2.1.1716656478/share/lua/5.1/?/init.lua;/home/klein/.cache/nvim/packer_hererocks/2.1.1716656478/lib/luarocks/rocks-5.1/?.lua;/home/klein/.cache/nvim/packer_hererocks/2.1.1716656478/lib/luarocks/rocks-5.1/?/init.lua"
local install_cpath_pattern = "/home/klein/.cache/nvim/packer_hererocks/2.1.1716656478/lib/lua/5.1/?.so"
if not string.find(package.path, package_path_str, 1, true) then
package.path = package.path .. ';' .. package_path_str
end
@@ -77,154 +77,134 @@ _G.packer_plugins = {
["Comment.nvim"] = {
config = { "\27LJ\2\n5\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\fComment\frequire\0" },
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/Comment.nvim",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/Comment.nvim",
url = "https://github.com/numToStr/Comment.nvim"
},
LuaSnip = {
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/LuaSnip",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/LuaSnip",
url = "https://github.com/L3MON4D3/LuaSnip"
},
["cmp-buffer"] = {
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/cmp-buffer",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/cmp-buffer",
url = "https://github.com/hrsh7th/cmp-buffer"
},
["cmp-cmdline"] = {
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/cmp-cmdline",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/cmp-cmdline",
url = "https://github.com/hrsh7th/cmp-cmdline"
},
["cmp-nvim-lsp"] = {
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/cmp-nvim-lsp",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/cmp-nvim-lsp",
url = "https://github.com/hrsh7th/cmp-nvim-lsp"
},
["cmp-path"] = {
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/cmp-path",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/cmp-path",
url = "https://github.com/hrsh7th/cmp-path"
},
cmp_luasnip = {
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/cmp_luasnip",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/cmp_luasnip",
url = "https://github.com/saadparwaiz1/cmp_luasnip"
},
["gitsigns.nvim"] = {
config = { "\27LJ\2\n6\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\rgitsigns\frequire\0" },
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/gitsigns.nvim",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/gitsigns.nvim",
url = "https://github.com/lewis6991/gitsigns.nvim"
},
gruvbox = {
config = { "\27LJ\2\n7\0\0\3\0\3\0\0056\0\0\0009\0\1\0'\2\2\0B\0\2\1K\0\1\0\24colorscheme gruvbox\bcmd\bvim\0" },
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/gruvbox",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/gruvbox",
url = "https://github.com/morhetz/gruvbox"
},
["lualine.nvim"] = {
config = { "\27LJ\2\n<EFBFBD>\5\0\0\a\0\29\0)6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\0025\3\a\0005\4\6\0=\4\b\0035\4\t\0005\5\n\0005\6\v\0=\6\f\5>\5\3\4=\4\r\0035\4\14\0=\4\15\0035\4\16\0=\4\17\0035\4\18\0=\4\19\0035\4\20\0=\4\21\3=\3\22\0025\3\23\0004\4\0\0=\4\b\0034\4\0\0=\4\r\0035\4\24\0=\4\15\0035\4\25\0=\4\17\3=\3\26\0024\3\0\0=\3\27\0024\3\0\0=\3\28\2B\0\2\1K\0\1\0\15extensions\ftabline\22inactive_sections\1\2\0\0\rlocation\1\2\0\0\rfilename\1\0\4\14lualine_a\0\14lualine_c\0\14lualine_x\0\14lualine_b\0\rsections\14lualine_z\1\2\0\0\rlocation\14lualine_y\1\2\0\0\rprogress\14lualine_x\1\4\0\0\rencoding\15fileformat\rfiletype\14lualine_c\1\2\0\0\rfilename\14lualine_b\fsources\1\3\0\0\rnvim_lsp\bcoc\1\2\1\0\16diagnostics\fsources\0\1\3\0\0\vbranch\tdiff\14lualine_a\1\0\6\14lualine_y\0\14lualine_x\0\14lualine_b\0\14lualine_a\0\14lualine_c\0\14lualine_z\0\1\2\0\0\tmode\foptions\1\0\5\ftabline\0\15extensions\0\foptions\0\22inactive_sections\0\rsections\0\1\0\4\23section_separators\5\ntheme\fgruvbox\18icons_enabled\2\25component_separators\6|\nsetup\flualine\frequire\0" },
config = { "\27LJ\2\n<EFBFBD>\5\0\0\a\0\29\0)6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\0025\3\a\0005\4\6\0=\4\b\0035\4\t\0005\5\n\0005\6\v\0=\6\f\5>\5\3\4=\4\r\0035\4\14\0=\4\15\0035\4\16\0=\4\17\0035\4\18\0=\4\19\0035\4\20\0=\4\21\3=\3\22\0025\3\23\0004\4\0\0=\4\b\0034\4\0\0=\4\r\0035\4\24\0=\4\15\0035\4\25\0=\4\17\3=\3\26\0024\3\0\0=\3\27\0024\3\0\0=\3\28\2B\0\2\1K\0\1\0\15extensions\ftabline\22inactive_sections\1\2\0\0\rlocation\1\2\0\0\rfilename\1\0\4\14lualine_c\0\14lualine_x\0\14lualine_b\0\14lualine_a\0\rsections\14lualine_z\1\2\0\0\rlocation\14lualine_y\1\2\0\0\rprogress\14lualine_x\1\4\0\0\rencoding\15fileformat\rfiletype\14lualine_c\1\2\0\0\rfilename\14lualine_b\fsources\1\3\0\0\rnvim_lsp\bcoc\1\2\1\0\16diagnostics\fsources\0\1\3\0\0\vbranch\tdiff\14lualine_a\1\0\6\14lualine_c\0\14lualine_z\0\14lualine_x\0\14lualine_y\0\14lualine_b\0\14lualine_a\0\1\2\0\0\tmode\foptions\1\0\5\foptions\0\rsections\0\15extensions\0\ftabline\0\22inactive_sections\0\1\0\4\25component_separators\6|\23section_separators\5\ntheme\fgruvbox\18icons_enabled\2\nsetup\flualine\frequire\0" },
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/lualine.nvim",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/lualine.nvim",
url = "https://github.com/nvim-lualine/lualine.nvim"
},
["markdown-preview.nvim"] = {
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/markdown-preview.nvim",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/markdown-preview.nvim",
url = "https://github.com/iamcco/markdown-preview.nvim"
},
["nvim-autopairs"] = {
config = { "\27LJ\2\n@\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\19nvim-autopairs\frequire\0" },
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/nvim-autopairs",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/nvim-autopairs",
url = "https://github.com/windwp/nvim-autopairs"
},
["nvim-cmp"] = {
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/nvim-cmp",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/nvim-cmp",
url = "https://github.com/hrsh7th/nvim-cmp"
},
["nvim-lspconfig"] = {
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/nvim-lspconfig",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/nvim-lspconfig",
url = "https://github.com/neovim/nvim-lspconfig"
},
["nvim-tree.lua"] = {
config = { "\27LJ\2\n;\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\14nvim-tree\frequire\0" },
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/nvim-tree.lua",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/nvim-tree.lua",
url = "https://github.com/kyazdani42/nvim-tree.lua"
},
["nvim-treesitter"] = {
config = { "\27LJ\2\n<EFBFBD>\1\0\0\5\0\f\0\0156\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\0025\3\6\0=\3\a\0025\3\t\0005\4\b\0=\4\n\3=\3\v\2B\0\2\1K\0\1\0\16textobjects\vselect\1\0\1\vselect\0\1\0\1\venable\2\26incremental_selection\1\0\1\venable\2\14highlight\1\0\3\16textobjects\0\14highlight\0\26incremental_selection\0\1\0\1\venable\2\nsetup\28nvim-treesitter.configs\frequire\0" },
config = { "\27LJ\2\n<EFBFBD>\2\0\0\5\0\14\0\0176\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\0025\3\6\0=\3\a\0025\3\b\0=\3\t\0025\3\v\0005\4\n\0=\4\f\3=\3\r\2B\0\2\1K\0\1\0\16textobjects\vselect\1\0\1\vselect\0\1\0\1\venable\2\26incremental_selection\1\0\1\venable\2\14highlight\1\0\1\venable\2\21ensure_installed\1\0\4\26incremental_selection\0\16textobjects\0\21ensure_installed\0\14highlight\0\1\5\0\0\ago\blua\vpython\trust\nsetup\28nvim-treesitter.configs\frequire\0" },
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/nvim-treesitter",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/nvim-treesitter",
url = "https://github.com/nvim-treesitter/nvim-treesitter"
},
["nvim-web-devicons"] = {
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/nvim-web-devicons",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/nvim-web-devicons",
url = "https://github.com/kyazdani42/nvim-web-devicons"
},
["packer.nvim"] = {
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/packer.nvim",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/packer.nvim",
url = "https://github.com/wbthomason/packer.nvim"
},
["plenary.nvim"] = {
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/plenary.nvim",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/plenary.nvim",
url = "https://github.com/nvim-lua/plenary.nvim"
},
["telescope.nvim"] = {
config = { "\27LJ\2\n;\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\14telescope\frequire\0" },
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/telescope.nvim",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/telescope.nvim",
url = "https://github.com/nvim-telescope/telescope.nvim"
},
vimwiki = {
config = { "\27LJ\2\nw\0\0\3\0\4\0\a6\0\0\0009\0\1\0004\1\3\0005\2\3\0>\2\1\1=\1\2\0K\0\1\0\1\0\4\bext\b.md\vsyntax\rmarkdown\19diary_rel_path\vdiary/\tpath\15~/vimwiki/\17vimwiki_list\6g\bvim\0" },
config = { "\27LJ\2\nw\0\0\3\0\4\0\a6\0\0\0009\0\1\0004\1\3\0005\2\3\0>\2\1\1=\1\2\0K\0\1\0\1\0\4\vsyntax\rmarkdown\19diary_rel_path\vdiary/\bext\b.md\tpath\15~/vimwiki/\17vimwiki_list\6g\bvim\0" },
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/vimwiki",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/vimwiki",
url = "https://github.com/vimwiki/vimwiki"
},
["which-key.nvim"] = {
config = { "\27LJ\2\n7\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\14which-key\frequire\0" },
loaded = true,
path = "/root/.local/share/nvim/site/pack/packer/start/which-key.nvim",
path = "/home/klein/.local/share/nvim/site/pack/packer/start/which-key.nvim",
url = "https://github.com/folke/which-key.nvim"
}
}
time([[Defining packer_plugins]], false)
-- Config for: nvim-tree.lua
time([[Config for nvim-tree.lua]], true)
try_loadstring("\27LJ\2\n;\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\14nvim-tree\frequire\0", "config", "nvim-tree.lua")
time([[Config for nvim-tree.lua]], false)
-- Config for: Comment.nvim
time([[Config for Comment.nvim]], true)
try_loadstring("\27LJ\2\n5\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\fComment\frequire\0", "config", "Comment.nvim")
time([[Config for Comment.nvim]], false)
-- Config for: vimwiki
time([[Config for vimwiki]], true)
try_loadstring("\27LJ\2\nw\0\0\3\0\4\0\a6\0\0\0009\0\1\0004\1\3\0005\2\3\0>\2\1\1=\1\2\0K\0\1\0\1\0\4\bext\b.md\vsyntax\rmarkdown\19diary_rel_path\vdiary/\tpath\15~/vimwiki/\17vimwiki_list\6g\bvim\0", "config", "vimwiki")
time([[Config for vimwiki]], false)
-- Config for: telescope.nvim
time([[Config for telescope.nvim]], true)
try_loadstring("\27LJ\2\n;\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\14telescope\frequire\0", "config", "telescope.nvim")
time([[Config for telescope.nvim]], false)
-- Config for: lualine.nvim
time([[Config for lualine.nvim]], true)
try_loadstring("\27LJ\2\n<EFBFBD>\5\0\0\a\0\29\0)6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\0025\3\a\0005\4\6\0=\4\b\0035\4\t\0005\5\n\0005\6\v\0=\6\f\5>\5\3\4=\4\r\0035\4\14\0=\4\15\0035\4\16\0=\4\17\0035\4\18\0=\4\19\0035\4\20\0=\4\21\3=\3\22\0025\3\23\0004\4\0\0=\4\b\0034\4\0\0=\4\r\0035\4\24\0=\4\15\0035\4\25\0=\4\17\3=\3\26\0024\3\0\0=\3\27\0024\3\0\0=\3\28\2B\0\2\1K\0\1\0\15extensions\ftabline\22inactive_sections\1\2\0\0\rlocation\1\2\0\0\rfilename\1\0\4\14lualine_a\0\14lualine_c\0\14lualine_x\0\14lualine_b\0\rsections\14lualine_z\1\2\0\0\rlocation\14lualine_y\1\2\0\0\rprogress\14lualine_x\1\4\0\0\rencoding\15fileformat\rfiletype\14lualine_c\1\2\0\0\rfilename\14lualine_b\fsources\1\3\0\0\rnvim_lsp\bcoc\1\2\1\0\16diagnostics\fsources\0\1\3\0\0\vbranch\tdiff\14lualine_a\1\0\6\14lualine_y\0\14lualine_x\0\14lualine_b\0\14lualine_a\0\14lualine_c\0\14lualine_z\0\1\2\0\0\tmode\foptions\1\0\5\ftabline\0\15extensions\0\foptions\0\22inactive_sections\0\rsections\0\1\0\4\23section_separators\5\ntheme\fgruvbox\18icons_enabled\2\25component_separators\6|\nsetup\flualine\frequire\0", "config", "lualine.nvim")
time([[Config for lualine.nvim]], false)
-- Config for: nvim-treesitter
time([[Config for nvim-treesitter]], true)
try_loadstring("\27LJ\2\n<EFBFBD>\1\0\0\5\0\f\0\0156\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\0025\3\6\0=\3\a\0025\3\t\0005\4\b\0=\4\n\3=\3\v\2B\0\2\1K\0\1\0\16textobjects\vselect\1\0\1\vselect\0\1\0\1\venable\2\26incremental_selection\1\0\1\venable\2\14highlight\1\0\3\16textobjects\0\14highlight\0\26incremental_selection\0\1\0\1\venable\2\nsetup\28nvim-treesitter.configs\frequire\0", "config", "nvim-treesitter")
time([[Config for nvim-treesitter]], false)
-- Config for: which-key.nvim
time([[Config for which-key.nvim]], true)
try_loadstring("\27LJ\2\n7\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\14which-key\frequire\0", "config", "which-key.nvim")
time([[Config for which-key.nvim]], false)
-- Config for: gitsigns.nvim
time([[Config for gitsigns.nvim]], true)
try_loadstring("\27LJ\2\n6\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\rgitsigns\frequire\0", "config", "gitsigns.nvim")
@@ -233,6 +213,26 @@ time([[Config for gitsigns.nvim]], false)
time([[Config for nvim-autopairs]], true)
try_loadstring("\27LJ\2\n@\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\19nvim-autopairs\frequire\0", "config", "nvim-autopairs")
time([[Config for nvim-autopairs]], false)
-- Config for: nvim-treesitter
time([[Config for nvim-treesitter]], true)
try_loadstring("\27LJ\2\n<EFBFBD>\2\0\0\5\0\14\0\0176\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\0025\3\6\0=\3\a\0025\3\b\0=\3\t\0025\3\v\0005\4\n\0=\4\f\3=\3\r\2B\0\2\1K\0\1\0\16textobjects\vselect\1\0\1\vselect\0\1\0\1\venable\2\26incremental_selection\1\0\1\venable\2\14highlight\1\0\1\venable\2\21ensure_installed\1\0\4\26incremental_selection\0\16textobjects\0\21ensure_installed\0\14highlight\0\1\5\0\0\ago\blua\vpython\trust\nsetup\28nvim-treesitter.configs\frequire\0", "config", "nvim-treesitter")
time([[Config for nvim-treesitter]], false)
-- Config for: which-key.nvim
time([[Config for which-key.nvim]], true)
try_loadstring("\27LJ\2\n7\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\14which-key\frequire\0", "config", "which-key.nvim")
time([[Config for which-key.nvim]], false)
-- Config for: nvim-tree.lua
time([[Config for nvim-tree.lua]], true)
try_loadstring("\27LJ\2\n;\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\14nvim-tree\frequire\0", "config", "nvim-tree.lua")
time([[Config for nvim-tree.lua]], false)
-- Config for: vimwiki
time([[Config for vimwiki]], true)
try_loadstring("\27LJ\2\nw\0\0\3\0\4\0\a6\0\0\0009\0\1\0004\1\3\0005\2\3\0>\2\1\1=\1\2\0K\0\1\0\1\0\4\vsyntax\rmarkdown\19diary_rel_path\vdiary/\bext\b.md\tpath\15~/vimwiki/\17vimwiki_list\6g\bvim\0", "config", "vimwiki")
time([[Config for vimwiki]], false)
-- Config for: lualine.nvim
time([[Config for lualine.nvim]], true)
try_loadstring("\27LJ\2\n<EFBFBD>\5\0\0\a\0\29\0)6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\0025\3\a\0005\4\6\0=\4\b\0035\4\t\0005\5\n\0005\6\v\0=\6\f\5>\5\3\4=\4\r\0035\4\14\0=\4\15\0035\4\16\0=\4\17\0035\4\18\0=\4\19\0035\4\20\0=\4\21\3=\3\22\0025\3\23\0004\4\0\0=\4\b\0034\4\0\0=\4\r\0035\4\24\0=\4\15\0035\4\25\0=\4\17\3=\3\26\0024\3\0\0=\3\27\0024\3\0\0=\3\28\2B\0\2\1K\0\1\0\15extensions\ftabline\22inactive_sections\1\2\0\0\rlocation\1\2\0\0\rfilename\1\0\4\14lualine_c\0\14lualine_x\0\14lualine_b\0\14lualine_a\0\rsections\14lualine_z\1\2\0\0\rlocation\14lualine_y\1\2\0\0\rprogress\14lualine_x\1\4\0\0\rencoding\15fileformat\rfiletype\14lualine_c\1\2\0\0\rfilename\14lualine_b\fsources\1\3\0\0\rnvim_lsp\bcoc\1\2\1\0\16diagnostics\fsources\0\1\3\0\0\vbranch\tdiff\14lualine_a\1\0\6\14lualine_c\0\14lualine_z\0\14lualine_x\0\14lualine_y\0\14lualine_b\0\14lualine_a\0\1\2\0\0\tmode\foptions\1\0\5\foptions\0\rsections\0\15extensions\0\ftabline\0\22inactive_sections\0\1\0\4\25component_separators\6|\23section_separators\5\ntheme\fgruvbox\18icons_enabled\2\nsetup\flualine\frequire\0", "config", "lualine.nvim")
time([[Config for lualine.nvim]], false)
-- Config for: gruvbox
time([[Config for gruvbox]], true)
try_loadstring("\27LJ\2\n7\0\0\3\0\3\0\0056\0\0\0009\0\1\0'\2\2\0B\0\2\1K\0\1\0\24colorscheme gruvbox\bcmd\bvim\0", "config", "gruvbox")

View File

@@ -1,45 +0,0 @@
#!/usr/bin/env bash
compile()
{
echo "[Compiling Sketch]"
echo "[Command]: arduino-cli compile -b $FQBN $SKETCH --no-color"
arduino-cli compile -b "$FQBN" "$SKETCH" --no-color
}
upload()
{
echo "[Uploading]"
echo "[Command]: arduino-cli upload -b $FQBN -p $PORT_ADDRESS $SKETCH --no-color"
arduino-cli upload -b "$FQBN" -p "$PORT_ADDRESS" "$SKETCH" --no-color
}
monitor()
{
echo "[Command]: arduino-cli monitor -p $PORT_ADDRESS -c $BAUDRATE"
arduino-cli monitor -p "$PORT_ADDRESS" -c "$BAUDRATE"
}
compile_and_upload()
{
[[ "$FQBN" == "null" ]] && echo "[Error]: Board not found" && exit 1
compile && upload && echo "[Success]"
}
INFO="$(arduino-cli board list --json)"
FQBN="$(echo "$INFO" | jq -r .detected_ports[0].matching_boards[0].fqbn)"
PORT_ADDRESS="$(echo "$INFO" | jq -r .detected_ports[0].port.address)"
while getopts "imu:" opt
do
case "$opt" in
u)
SKETCH="$OPTARG"
compile && upload ;;
i)
echo "$INFO" ;;
m)
BAUDRATE="$2"
monitor ;;
esac
done

131
picom/fa.picom.conf Normal file
View File

@@ -0,0 +1,131 @@
#################################
# Shadows #
#################################
#Enabled Client-side shadows on windows. Note desktop windows
#(windows with '_NET_WM_WINDOW_TYPE_DESKTOP') never get shadow,
#unless explicitely requested using the wintypes option.
shadow = false;
#Blue radius for shadows in pixels, default is 12
# shadow-radius = 5;
#Opacity of shadows (0-1, default 0.75)
# shadow-opacity = .75;
#Left offset for shadows in pixels (default -15)
# shadow-offset-x = -7;
#Top offset for shadows in pixels (default -15)
# shadow-offset-y = -2;
#Hex string volor value for shadow
# shadow-color = "#081F2F";
#Specify a list of conditions of windows w/ no shadows
# shadow-exclude = []
#################################
# Fading #
#################################
#Fade windows in/out when openin/closing and when opacity change
fading = false;
#Opacity change between steps while fading (0.01-1.0)
# fade-in-step = 0.03;
#Opacity change between stels while fading out (0.01-1.0)
# fade-out-step = 0.03;
#The time between steps in fade steps in milliseconds
# fade-delta = 10;
#Specify a list of conditions of windows that should not be faded
# fade-exclude = []
#################################
# Transparency / Opacity #
#################################
#operacity of inactivty windows (0.1-1.0)
inactive-opacity = 0.9;
#opacity of window titlebars and boarders (0.1-1.0)
frame-opacity = 1.0;
#let inactive opeacity set by -i override the '_NET_WM_WINDOW_OPACITY' values of windows/
inactive-opacity-override = false;
#Default opacity for active windows (0.0-1.0) default to 1
active-opacity = 1.0;
#Dim inactive windows (0.0-1.0, defaults to 0.0)
inactive-dim = 0.1;
#Specify a list of conditions of windows that should never be considered focused
# focus-exclude = []
#Specify a list of opacity rules, in the format 'PERCENT:PATTERN'
#Can be name or class.
opacity-rule = [
"100:class_g = 'Alacritty'",
"100:class_g = 'qutebrowser'",
"100:class_g = 'Qutebrowser'",
"100:class_g = 'zathura'",
"100:class_g = 'conky'",
"100:class_g = 'Zathura'",
"100:class_g = 'dwm'"
];
#################################
# Corners #
#################################
#Set the radius of rounded window corners. When > 0, the compositor will round the corners of windows.
corner-radius = 12;
#Exclude coniditions for rounded corners
rounded-corners-exclude = [
"window_type = 'dock'"
];
#################################
# Background-Blurring #
#################################
#Parameter for background blurring
# blur-method, blue-size, blur-deviation, blur-strength,
#Blue background of semi-transparent windows. Bad in performce with driver dependent behavior.
# blur-background = false
#Blur backgrounds of windows when the window frame is not opaque
#Bad in performance with driver dependent behavior
# blur-background-frame = false
# blur-background-fixed = false
#Exclude coniditions for background blur.
# blur-background-exclude = [];
#################################
# General Settings #
#################################
#Enable remote control via d-bus
# dbus = true
#Daemoize process. Fork to background after initiation
#May cause issues with certain (badly-written) drivers.
# daemon = false
#specify the backend to use 'xrender', 'glx', 'elg', or 'xr_glx_hybrid.
# backend = "glx";
backend = "xrender";
glx-no-stencil = false;
#Use higher precision during render and apply dither when presenting the rendered screen. Reduces banding artifacts but might cause performance degrataion. Only works with OpenGL
# dithered-present = false;
#Enable/Disable Vsync
vsync = true;
#Make transparent windows clip other windows like non-transparent windows do, instead of blending on top of them
# transparent-clipping = true - only works with experimental backend

View File

@@ -0,0 +1,2 @@
{
}

0
qBittorrent/lockfile Normal file
View File

View File

@@ -0,0 +1,2 @@
[Stats]
AllStats=@Variant(\0\0\0\x1c\0\0\0\x2\0\0\0\x12\0\x41\0l\0l\0t\0i\0m\0\x65\0\x44\0L\0\0\0\x4\0\0\0\0`\x10\xe7\x65\0\0\0\x12\0\x41\0l\0l\0t\0i\0m\0\x65\0U\0L\0\0\0\x4\0\0\0\0\x3.\xff\xde)

View File

@@ -0,0 +1,29 @@
[AddNewTorrentDialog]
DialogSize=@Size(900 680)
DownloadPathHistory=
Enabled=true
RememberLastSavePath=false
SavePathHistory=/home/klein/Downloads
SplitterState=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\x1\x90\0\0\x1i\0\xff\xff\xff\xff\x1\0\0\0\x1\0)
TreeHeaderState=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x6\x34\0\0\0\x3\0\0\0\x4\0\0\0\x64\0\0\0\x5\0\0\0\x64\0\0\0\x2\0\0\0\x64\0\0\x1\x88\0\0\0\x6\x1\x1\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\x6\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\xc0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64)
[BitTorrent]
Session\Port=43054
Session\QueueingSystemEnabled=false
[GUI]
Log\Enabled=false
[LegalNotice]
Accepted=true
[MainWindow]
LastDir=/home/klein/Downloads
[Meta]
MigrationVersion=4
[TransferList]
SubSortColumn=0
SubSortOrder=1
qt5\HeaderState=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x6\x1\0\0\0\0\0\0\0\0\0\0\0\"\t\xc0\xff\xbf\x3\0\0\0\x15\0\0\0\x3\0\0\0\x64\0\0\0 \0\0\0\x64\0\0\0\xe\0\0\0\x64\0\0\0!\0\0\0\x64\0\0\0\xf\0\0\0\x64\0\0\0\x14\0\0\0\x64\0\0\0\x15\0\0\0\x64\0\0\0\x16\0\0\0\x64\0\0\0\x17\0\0\0\x64\0\0\0\x10\0\0\0\x64\0\0\0\x11\0\0\0\x64\0\0\0\x12\0\0\0\x64\0\0\0\x13\0\0\0\x64\0\0\0\x1c\0\0\0\x64\0\0\0\x1d\0\0\0\x64\0\0\0\x1f\0\0\0\x64\0\0\0\x18\0\0\0\x64\0\0\0\x19\0\0\0\x64\0\0\0\x1a\0\0\0\x64\0\0\0\x1b\0\0\0\x64\0\0\0\0\0\0\0\x64\0\0\x5\x14\0\0\0\"\x1\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\"\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64)

View File

@@ -0,0 +1,2 @@
{
}

View File

@@ -0,0 +1,2 @@
{
}

View File

@@ -20,3 +20,5 @@ settings:
https://app.zoom.us: true
content.proxy:
global: system
content.user_stylesheets:
global: null

View File

@@ -152,3 +152,16 @@ https://github.com/amgadalharazi/toralizer/tree/main?tab=readme-ov-file amgadalh
https://en.wikipedia.org/wiki/Direct_Rendering_Manager Direct Rendering Manager - Wikipedia
https://www.youtube.com/watch?v=QBFtNS9fEtA 12h of 9 different C Projects: The 1st episodes - YouTube
https://ptable.com/?lang=en#Properties Periodic Table - Ptable - Properties
https://discord.com/channels/@me (1) Discord | Friends
https://www.verywellmind.com/understanding-and-using-the-law-of-attraction-3144808 What Is the Law of Attraction?
https://10.0.0.235:5000/login Login
https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository Licensing a repository - GitHub Docs
https://ap.www.namecheap.com/ My Account Panel - Namecheap.com
https://login.vt.edu/profile/SAML2/Redirect/SSO?execution=e1s1#/ Login | Virginia Tech
https://www.man7.org/linux/man-pages/man2/mmap.2.html mmap(2) - Linux manual page
https://archive.org/details/studio-ghibli-hayao-miyazaki-collection Studio Ghibli - Hayao Miyazaki Collection : Hayao Miyazaki : Free Download, Borrow, and Streaming : Internet Archive
https://readme-typing-svg.herokuapp.com/demo/ Readme Typing SVG - Demo Site
https://github.com/drkostas drkostas (Kostas Georgiou)
http://kernelpanic:3000/ Rdio Scanner
https://m.broadcastify.com/listen/feed/16025 Montgomery County Public Safety Live Audio Feed
https://support.broadcastify.com/hc/en-us/categories/200377615-Developers Developers Broadcastify Support

View File

@@ -1,6 +1,6 @@
[FileDialog]
history=file:///home/klein/Pictures/backgrounds, file:///home/klein/Videos/Screenrecords, file:///home/klein/vimwiki, file:///home/klein
lastVisited=file:///home/klein
history=file:///home/klein/codeWS/Python3/convertions, file:///home/klein/Videos/Screenrecords, file:///home/klein/Downloads, file:///home/klein, file:///home/klein/vimwiki/School/English
lastVisited=file:///home/klein/Downloads
qtVersion=5.15.8
shortcuts=file:, file:///home/klein
sidebarWidth=87

View File

@@ -10,3 +10,18 @@ princeton review https://dashboardv4.princetonreview.com/?token=eyJhbGciOiJIUzI1
github https://github.com/
private mail https://privateemail.com/appsuite/#storeLocale=true
ptable https://ptable.com/?lang=en#Properties
discord https://discord.com/channels/@me
filetransfer https://10.0.0.235:5000/login
licence https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository
namecheap https://ap.www.namecheap.com/
taag http://www.patorjk.com/software/taag/#p=display&f=Graffiti&t=Type%20Something%20
kleinpanic https://kleinpanic.com/
hokiespa https://selfservice.banner.vt.edu/ssb/twbkwbis.P_GenMenu?name=bmenu.P_MainMnu&SAMLart=ST-1731345911443-68miYsx9d3PavaXj5o39CezI8
license https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository
archive https://web.archive.org/
reddit https://www.reddit.com/
radio http://kernelpanic:3000/
broadcast https://m.broadcastify.com/listen/feed/16025
broadcastdev https://support.broadcastify.com/hc/en-us/categories/200377615-Developers
gmail https://mail.google.com/mail/u/0/#inbox
youtube\ https://www.youtube.com/

0
qutebrowser/style.css Normal file
View File

View File

@@ -4,7 +4,7 @@ After=default.target
[Service]
Type=simple
ExecStart=/usr/local/bin/fehbg
ExecStart=/usr/local/bin/daemon_starter fehbg
Restart=on-failure
Environment=DISPLAY=:0
Environment=XAUTHORITY=/home/klein/.Xauthority

View File

@@ -1,10 +1,10 @@
[Unit]
Description=Start caffeine-indcator on X
Description=Start caffeine-inicator on X
After=default.target
[Service]
Type=simple
ExecStart=/usr/local/bin/caffeine-indicatorstartup
ExecStart=/usr/local/bin/daemon_starter caffeine-indicator
Restart=on-failure
Environment=DISPLAY=:0
Environment=XAUTHORITY=/home/klein/.Xauthority

View File

@@ -4,7 +4,7 @@ After=default.target
[Service]
Type=simple
ExecStart=/usr/local/bin/picomstartup
ExecStart=/usr/local/bin/daemon_starter picom
Restart=on-failure
Environment=DISPLAY=:0
Environment=XAUTHORITY=/home/klein/.Xauthority

View File

@@ -5,7 +5,6 @@ After=default.target
[Service]
Type=simple
ExecStart=/usr/local/bin/statusbar
User=klein
Restart=on-failure
Environment=DISPLAY=:0
Environment=XAUTHORITY=/home/klein/.Xauthority

View File

@@ -4,7 +4,7 @@ After=default.target
[Service]
Type=simple
ExecStart=/usr/local/bin/volumeiconstartup
ExecStart=/usr/local/bin/daemon_starter volumeicon
Restart=on-failure
Environment=DISPLAY=:0
Environment=XAUTHORITY=/home/klein/.Xauthority

24
vlc/vlc-qt-interface.conf Normal file
View File

@@ -0,0 +1,24 @@
[General]
filedialog-path=@Variant(\0\0\0\x11\0\0\0\v/home/klein)
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\n\0\0\0'\0\0\x4\x1f\0\0\x4\xa5\0\0\0\f\0\0\0)\0\0\x4\x1d\0\0\x4\xa3\0\0\0\0\0\0\0\0\a\x80\0\0\0\f\0\0\0)\0\0\x4\x1d\0\0\x4\xa3)
[FullScreen]
pos=@Point(0 0)
screen=@Rect(0 0 0 0)
wide=false
[MainWindow]
adv-controls=0
bgSize=@Size(600 0)
pl-dock-status=true
playlist-visible=false
playlistSize=@Size(-1 -1)
status-bar-visible=false
[OpenDialog]
advanced=false
size=@Size(526 405)
[RecentsMRL]
list=@Invalid()
times=@Invalid()

5160
vlc/vlcrc Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -11,7 +11,7 @@ notification_type=0
stepsize=5
onclick=xterm -e 'alsamixer'
theme=Default
use_panel_specific_icons=true
use_panel_specific_icons=false
reverse_scroll_direction=false
lmb_slider=true
mmb_mute=false