From 97dbe505c23476c4f39b998110e6d24b8076b868 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Mon, 27 Nov 2023 18:30:43 -0600 Subject: [PATCH] out with the old --- home/.chezmoiignore | 1 + home/private_dot_config/bottom/bottom.toml | 161 -------- home/private_dot_config/leftwm/config.toml | 364 ------------------- home/private_dot_config/xplr/init.lua | 4 - home/private_dot_config/xplr/lua/plugins.lua | 35 -- 5 files changed, 1 insertion(+), 564 deletions(-) delete mode 100644 home/private_dot_config/bottom/bottom.toml delete mode 100644 home/private_dot_config/leftwm/config.toml delete mode 100644 home/private_dot_config/xplr/init.lua delete mode 100644 home/private_dot_config/xplr/lua/plugins.lua diff --git a/home/.chezmoiignore b/home/.chezmoiignore index 9b12f1a..61321b4 100644 --- a/home/.chezmoiignore +++ b/home/.chezmoiignore @@ -10,4 +10,5 @@ bin/lock .config/autorandr .config/pikaur.conf .config/gtk-3.0 +.config/vivaldi {{- end }} diff --git a/home/private_dot_config/bottom/bottom.toml b/home/private_dot_config/bottom/bottom.toml deleted file mode 100644 index f2733fa..0000000 --- a/home/private_dot_config/bottom/bottom.toml +++ /dev/null @@ -1,161 +0,0 @@ -# This is a default config file for bottom. All of the settings are commented -# out by default; if you wish to change them uncomment and modify as you see -# fit. - -# This group of options represents a command-line flag/option. Flags explicitly -# added when running (ie: btm -a) will override this config file if an option -# is also set here. - -[flags] -# Whether to hide the average cpu entry. -#hide_avg_cpu = false -# Whether to use dot markers rather than braille. -#dot_marker = false -# The update rate of the application. -rate = 250 -# Whether to put the CPU legend to the left. -#left_legend = false -# Whether to set CPU% on a process to be based on the total CPU or just current usage. -#current_usage = false -# Whether to group processes with the same name together by default. -#group_processes = false -# Whether to make process searching case sensitive by default. -#case_sensitive = false -# Whether to make process searching look for matching the entire word by default. -#whole_word = false -# Whether to make process searching use regex by default. -#regex = false -# Defaults to Celsius. Temperature is one of: -#temperature_type = "k" -#temperature_type = "f" -#temperature_type = "c" -#temperature_type = "kelvin" -#temperature_type = "fahrenheit" -#temperature_type = "celsius" -# The default time interval (in milliseconds). -#default_time_value = 60000 -# The time delta on each zoom in/out action (in milliseconds). -#time_delta = 15000 -# Hides the time scale. -#hide_time = false -# Override layout default widget -#default_widget_type = "proc" -#default_widget_count = 1 -# Use basic mode -#basic = false -# Use the old network legend style -#use_old_network_legend = false -# Remove space in tables -#hide_table_gap = false -# Show the battery widgets -#battery = false -# Disable mouse clicks -#disable_click = false -# Built-in themes. Valid values are "default", "default-light", "gruvbox", "gruvbox-light", "nord", "nord-light" -#color = "default" -# Show memory values in the processes widget as values by default -#mem_as_value = false -# Show tree mode by default in the processes widget. -#tree = false -# Shows an indicator in table widgets tracking where in the list you are. -#show_table_scroll_position = false -# Show processes as their commands by default in the process widget. -process_command = true -# Displays the network widget with binary prefixes. -#network_use_binary_prefix = false -# Displays the network widget using bytes. -#network_use_bytes = false -# Displays the network widget with a log scale. -#network_use_log = false -# Hides advanced options to stop a process on Unix-like systems. -#disable_advanced_kill = false - -# These are all the components that support custom theming. Note that colour support -# will depend on terminal support. - -#[colors] # Uncomment if you want to use custom colors -# Represents the colour of table headers (processes, CPU, disks, temperature). -#table_header_color="LightBlue" -# Represents the colour of the label each widget has. -#widget_title_color="Gray" -# Represents the average CPU color. -#avg_cpu_color="Red" -# Represents the colour the core will use in the CPU legend and graph. -#cpu_core_colors=["LightMagenta", "LightYellow", "LightCyan", "LightGreen", "LightBlue", "LightRed", "Cyan", "Green", "Blue", "Red"] -# Represents the colour RAM will use in the memory legend and graph. -#ram_color="LightMagenta" -# Represents the colour SWAP will use in the memory legend and graph. -#swap_color="LightYellow" -# Represents the colour rx will use in the network legend and graph. -#rx_color="LightCyan" -# Represents the colour tx will use in the network legend and graph. -#tx_color="LightGreen" -# Represents the colour of the border of unselected widgets. -#border_color="Gray" -# Represents the colour of the border of selected widgets. -#highlighted_border_color="LightBlue" -# Represents the colour of most text. -#text_color="Gray" -# Represents the colour of text that is selected. -#selected_text_color="Black" -# Represents the background colour of text that is selected. -#selected_bg_color="LightBlue" -# Represents the colour of the lines and text of the graph. -#graph_color="Gray" -# Represents the colours of the battery based on charge -#high_battery_color="green" -#medium_battery_color="yellow" -#low_battery_color="red" - -# Layout - layouts follow a pattern like this: -# [[row]] represents a row in the application. -# [[row.child]] represents either a widget or a column. -# [[row.child.child]] represents a widget. -# -# All widgets must have the type value set to one of ["cpu", "mem", "proc", "net", "temp", "disk", "empty"]. -# All layout components have a ratio value - if this is not set, then it defaults to 1. -# The default widget layout: -[[row]] - ratio=25 - [[row.child]] - ratio=6 - type="cpu" - [[row.child]] - ratio=4 - type="mem" -[[row]] - ratio=75 - [[row.child]] - type="proc" - default=true - - -# Filters - you can hide specific temperature sensors, network interfaces, and disks using filters. This is admittedly -# a bit hard to use as of now, and there is a planned in-app interface for managing this in the future: -#[disk_filter] -#is_list_ignored = true -#list = ["/dev/sda\\d+", "/dev/nvme0n1p2"] -#regex = true -#case_sensitive = false -#whole_word = false - -#[mount_filter] -#is_list_ignored = true -#list = ["/mnt/.*", "/boot"] -#regex = true -#case_sensitive = false -#whole_word = false - -#[temp_filter] -#is_list_ignored = true -#list = ["cpu", "wifi"] -#regex = false -#case_sensitive = false -#whole_word = false - -#[net_filter] -#is_list_ignored = true -#list = ["virbr0.*"] -#regex = true -#case_sensitive = false -#whole_word = false diff --git a/home/private_dot_config/leftwm/config.toml b/home/private_dot_config/leftwm/config.toml deleted file mode 100644 index 0d46ae1..0000000 --- a/home/private_dot_config/leftwm/config.toml +++ /dev/null @@ -1,364 +0,0 @@ -modkey = "Mod4" -mousekey = "Mod4" -workspaces = [] -tags = ["1", "2", "3", "4", "5", "6", "7", "8"] -layouts = ["MainAndVertStack", "Monocle", "EvenVertical", "CenterMainBalanced"] -layout_mode = "Workspace" -disable_current_tag_swap = false -focus_behaviour = "Sloppy" -focus_new_windows = true - -window_rules = [ - {window_class = "wavebox", spawn_on_tag = 8} -] - -##################################### -# Program Specific Settings -##################################### -# ------ -# Rofi -# ------ -[[keybind]] -command = "Execute" -value = "~/.config/leftwm/themes/current/rofi/bin/launcher.sh" -modifier = ["modkey"] -key = "p" - -[[keybind]] -command = "Execute" -value = "~/.config/leftwm/themes/current/rofi/bin/powermenu.sh" -modifier = ["modkey", "Shift"] -key = "p" - -[[keybind]] -command = "Execute" -value = "~/.config/leftwm/themes/current/rofi/bin/keymap.sh" -modifier = ["modkey", "Shift"] -key = "k" - -[[keybind]] -command = "Execute" -value = "~/.config/leftwm/themes/current/rofi/bin/bluetooth.sh" -modifier = ["modkey", "Shift"] -key = "b" - - -[[keybind]] -command = "Execute" -value = "thunar" -modifier = ["modkey", "Shift"] -key = "e" - -[[keybind]] -command = "Execute" -value = "alacritty" -modifier = ["modkey", "Shift"] -key = "Return" - -[[keybind]] -command = "Execute" -value = "~/bin/lock" -modifier = ["modkey", "Control"] -key = "l" - -[[keybind]] -command = "Execute" -value = "flameshot gui" -modifier = ["modkey"] -key = "s" - -[[keybind]] -command = "Execute" -value = "flameshot screen -n 0" -modifier = ["modkey", "Shift"] -key = "s" - -[[scratchpad]] -name = "Alacritty" # This is the name which is referenced when calling (case-sensitive) -value = "alacritty" # The command to load the application if it isn't started -# x, y, width, height are in pixels when an integer is inputted or a percentage when a float is inputted. -# These values are relative to the size of the workspace, and will be restricted depending on the workspace size. -x = 0.1 -y = 0.1 -height = 0.8 -width = 0.8 - -[[keybind]] -command = "ToggleScratchPad" -value = "Alacritty" -modifier = ["modkey"] -key = "t" - -##################################### -# LeftWM Keybindings -##################################### - -[[keybind]] -command = "CloseWindow" -modifier = ["modkey", "Shift"] -key = "q" - -[[keybind]] -command = "SoftReload" -modifier = ["modkey", "Shift"] -key = "r" - -[[keybind]] -command = "Execute" -value = "loginctl kill-session $XDG_SESSION_ID" -modifier = ["modkey", "Shift"] -key = "x" - -[[keybind]] -command = "MoveToLastWorkspace" -modifier = ["modkey", "Shift"] -key = "w" - -[[keybind]] -command = "SwapTags" -modifier = ["modkey"] -key = "w" - -# [[keybind]] -# command = "MoveWindowUp" -# modifier = ["modkey", "Shift"] -# key = "k" - -[[keybind]] -command = "MoveWindowDown" -modifier = ["modkey", "Shift"] -key = "j" - -[[keybind]] -command = "MoveWindowTop" -modifier = ["modkey"] -key = "Return" - -[[keybind]] -command = "FocusWindowUp" -modifier = ["modkey"] -key = "k" - -[[keybind]] -command = "FocusWindowDown" -modifier = ["modkey"] -key = "j" - -[[keybind]] -command = "NextLayout" -modifier = ["modkey", "Control"] -key = "k" - -#[[keybind]] -#command = "PreviousLayout" -#modifier = ["modkey", "Control"] -#key = "j" - -[[keybind]] -command = "FocusWorkspaceNext" -modifier = ["modkey"] -key = "l" - -[[keybind]] -command = "FocusWorkspacePrevious" -modifier = ["modkey"] -key = "h" - -[[keybind]] -command = "MoveWindowUp" -modifier = ["modkey", "Shift"] -key = "Up" - -[[keybind]] -command = "MoveWindowDown" -modifier = ["modkey", "Shift"] -key = "Down" - -[[keybind]] -command = "FocusWindowUp" -modifier = ["modkey"] -key = "Up" - -[[keybind]] -command = "FocusWindowDown" -modifier = ["modkey"] -key = "Down" - -[[keybind]] -command = "NextLayout" -modifier = ["modkey", "Control"] -key = "Up" - -[[keybind]] -command = "PreviousLayout" -modifier = ["modkey", "Control"] -key = "Down" - -[[keybind]] -command = "FocusWorkspaceNext" -modifier = ["modkey"] -key = "Right" - -[[keybind]] -command = "FocusWorkspacePrevious" -modifier = ["modkey"] -key = "Left" - -[[keybind]] -command = "GotoTag" -value = "1" -modifier = ["modkey"] -key = "1" - -[[keybind]] -command = "GotoTag" -value = "2" -modifier = ["modkey"] -key = "2" - -[[keybind]] -command = "GotoTag" -value = "3" -modifier = ["modkey"] -key = "3" - -[[keybind]] -command = "GotoTag" -value = "4" -modifier = ["modkey"] -key = "4" - -[[keybind]] -command = "GotoTag" -value = "5" -modifier = ["modkey"] -key = "5" - -[[keybind]] -command = "GotoTag" -value = "6" -modifier = ["modkey"] -key = "6" - -[[keybind]] -command = "GotoTag" -value = "7" -modifier = ["modkey"] -key = "7" - -[[keybind]] -command = "GotoTag" -value = "8" -modifier = ["modkey"] -key = "8" - -[[keybind]] -command = "GotoTag" -value = "9" -modifier = ["modkey"] -key = "9" - -[[keybind]] -command = "MoveToTag" -value = "1" -modifier = ["modkey", "Shift"] -key = "1" - -[[keybind]] -command = "MoveToTag" -value = "2" -modifier = ["modkey", "Shift"] -key = "2" - -[[keybind]] -command = "MoveToTag" -value = "3" -modifier = ["modkey", "Shift"] -key = "3" - -[[keybind]] -command = "MoveToTag" -value = "4" -modifier = ["modkey", "Shift"] -key = "4" - -[[keybind]] -command = "MoveToTag" -value = "5" -modifier = ["modkey", "Shift"] -key = "5" - -[[keybind]] -command = "MoveToTag" -value = "6" -modifier = ["modkey", "Shift"] -key = "6" - -[[keybind]] -command = "MoveToTag" -value = "7" -modifier = ["modkey", "Shift"] -key = "7" - -[[keybind]] -command = "MoveToTag" -value = "8" -modifier = ["modkey", "Shift"] -key = "8" - -[[keybind]] -command = "MoveToTag" -value = "9" -modifier = ["modkey", "Shift"] -key = "9" - -[[keybind]] -command = "IncreaseMainWidth" -value = "5" -modifier = ["modkey", "Control"] -key = "j" - -[[keybind]] -command = "DecreaseMainWidth" -value = "5" -modifier = ["modkey", "Control"] -key = "h" - -[[keybind]] -command = "ToggleFullScreen" -modifier = ["modkey"] -key = "f" - -##################################### -# System Specific Settings -##################################### - -[[keybind]] -command = "Execute" -value = "amixer set 'Master' 10%-" -modifier = [] -key = "XF86XK_AudioLowerVolume" - -[[keybind]] -command = "Execute" -value = "amixer set 'Master' 10%+" -modifier = [] -key = "XF86XK_AudioRaiseVolume" - -[[keybind]] -command = "Execute" -value = "amixer sset 'Master' toggle" -modifier = [] -key = "XF86XK_AudioMute" - -[[keybind]] -command = "Execute" -value = "light -A 5" -modifier = [] -key = "XF86XK_MonBrightnessUp" - -[[keybind]] -command = "Execute" -value = "light -U 5" -modifier = [] -key = "XF86XK_MonBrightnessDown" diff --git a/home/private_dot_config/xplr/init.lua b/home/private_dot_config/xplr/init.lua deleted file mode 100644 index 42ecb4f..0000000 --- a/home/private_dot_config/xplr/init.lua +++ /dev/null @@ -1,4 +0,0 @@ -package.path = os.getenv("HOME") .. '/.config/xplr/lua/?.lua' -require("plugins") - -version = "0.20.0" diff --git a/home/private_dot_config/xplr/lua/plugins.lua b/home/private_dot_config/xplr/lua/plugins.lua deleted file mode 100644 index 9e0de0e..0000000 --- a/home/private_dot_config/xplr/lua/plugins.lua +++ /dev/null @@ -1,35 +0,0 @@ -local home = os.getenv("HOME") -local xpm_path = home .. "/.local/share/xplr/dtomvan/xpm.xplr" -local xpm_url = "https://github.com/dtomvan/xpm.xplr" - -package.path = package.path - .. ";" - .. xpm_path - .. "/?.lua;" - .. xpm_path - .. "/?/init.lua" - -os.execute( - string.format( - "[ -e '%s' ] || git clone '%s' '%s'", - xpm_path, - xpm_url, - xpm_path - ) -) - -require("xpm").setup({ - plugins = { - -- Let xpm manage itself - 'dtomvan/xpm.xplr', - 'prncss-xyz/icons.xplr', - {'sayanarijit/zoxide.xplr', - setup = { - mode = "default", - key = "Z", - }, - } - }, - auto_install = true, - auto_cleanup = true, -})