i use arch btw
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove unused stuff

-144
-28
alacritty/.config/alacritty/alacritty.toml
··· 1 - [general] 2 - import = ["/usr/share/alacritty/themes/nord.toml"] 3 - 4 - [window] 5 - padding = { x = 8, y = 10 } 6 - dynamic_padding = true 7 - 8 - [font] 9 - normal = { family = "Hack Nerd Font", style = "Regular" } 10 - bold = { family = "Hack Nerd Font", style = "Bold" } 11 - italic = { family = "Hack Nerd Font", style = "Italic" } 12 - bold_italic = { family = "Hack Nerd Font", style = "Bold Italic" } 13 - size = 10 14 - offset = { x = 0, y = 0 } 15 - builtin_box_drawing = true 16 - 17 - [env] 18 - # TERM = "alacritty-direct" 19 - 20 - [terminal] 21 - osc52 = "CopyPaste" 22 - 23 - [keyboard] 24 - bindings = [ 25 - { key = "M", mods = "Control", chars = "\u001b[109;5u" }, 26 - { key = "V", mods = "Control|Shift", action = "Paste" }, 27 - { key = "C", mods = "Control|Shift", action = "Copy" }, 28 - ]
-9
cpupower/.config/cpupower_gui/00-cpg.conf
··· 1 - [Profile] 2 - profile = Schedutil 3 - 4 - [GUI] 5 - allcpus_default = True 6 - tick_marks_enabled = True 7 - frequency_ticks = True 8 - energy_pref_per_cpu = False 9 -
-11
cpupower/.config/cpupower_gui/cpg-Schedutil.profile
··· 1 - # name: Schedutil 2 - 3 - # CPU Min Max Governor Online 4 - 0 800 3101 schedutil True 5 - 1 800 3101 schedutil True 6 - 2 800 3101 schedutil True 7 - 3 800 3101 schedutil True 8 - 4 800 3101 schedutil True 9 - 5 800 3101 schedutil True 10 - 6 800 3101 schedutil True 11 - 7 800 3101 schedutil True
-5
direnv/.config/direnv/direnv.toml
··· 1 - [global] 2 - load_dotenv = true 3 - 4 - [whitelist] 5 - prefix = ["/home/bas/dev"]
-9
imwheel/.config/systemd/user/imwheel.service
··· 1 - [Unit] 2 - Description="imwheel" 3 - 4 - [Service] 5 - Type=forking 6 - ExecStart=/usr/bin/imwheel 7 - 8 - [Install] 9 - WantedBy=graphical-session.target
-7
imwheel/.imwheelrc
··· 1 - "Mailspring" 2 - None, Up, Button4, 3 3 - None, Down, Button5, 3 4 - 5 - ".*" 6 - None, Thumb1, Alt_L|Left 7 - None, Thumb2, Alt_L|Right
-57
terminator/.config/terminator/config
··· 1 - [global_config] 2 - inactive_color_offset = 1.0 3 - enabled_plugins = ActivityWatch, InactivityWatch, LaunchpadBugURLHandler, LaunchpadCodeURLHandler, APTURLHandler 4 - disable_mouse_paste = True 5 - clear_select_on_copy = True 6 - invert_search = True 7 - [keybindings] 8 - cycle_next = "" 9 - cycle_prev = "" 10 - go_next = <Alt>bracketright 11 - go_prev = <Alt>bracketleft 12 - split_auto = <Primary><Shift>Return 13 - split_horiz = "" 14 - split_vert = "" 15 - next_tab = <Primary>Tab 16 - prev_tab = <Primary><Shift>Tab 17 - layout_launcher = <Primary><Alt>l 18 - help = "" 19 - [profiles] 20 - [[default]] 21 - background_color = "#2E3440" 22 - font = Hack Nerd Font 10.5 23 - foreground_color = "#D8DEE9" 24 - show_titlebar = False 25 - scrollback_infinite = True 26 - palette = "#3b4252:#bf616a:#a3be8c:#ebcb8b:#81a1c1:#b48ead:#88c0d0:#e5e9f0:#4c566a:#bf616a:#a3be8c:#ebcb8b:#81a1c1:#b48ead:#8fbcbb:#eceff4" 27 - use_system_font = False 28 - [layouts] 29 - [[default]] 30 - [[[window0]]] 31 - type = Window 32 - parent = "" 33 - size = 900, 480 34 - [[[child1]]] 35 - type = Terminal 36 - parent = window0 37 - profile = default 38 - [[SaveLastSessionLayout]] 39 - [[[child0]]] 40 - type = Window 41 - parent = "" 42 - order = 0 43 - position = 0:0 44 - maximised = True 45 - fullscreen = False 46 - size = 2560, 1403 47 - title = ~ 48 - last_active_term = 3463da18-cdfa-4dcf-9bec-34b402b91ed0 49 - last_active_window = True 50 - [[[terminal1]]] 51 - type = Terminal 52 - parent = child0 53 - order = 0 54 - profile = default 55 - uuid = 3463da18-cdfa-4dcf-9bec-34b402b91ed0 56 - directory = /home/bas 57 - [plugins]
-18
wezterm/.config/wezterm/wezterm.lua
··· 1 - local wezterm = require("wezterm") 2 - local config = {} 3 - 4 - config.default_prog = { "/usr/bin/fish" } 5 - config.color_scheme = "nord" 6 - config.font = wezterm.font("Hack") 7 - config.font_size = 11 8 - config.hide_tab_bar_if_only_one_tab = true 9 - 10 - config.keys = { 11 - { 12 - key = "Enter", 13 - mods = "ALT", 14 - action = wezterm.action.DisableDefaultAssignment, 15 - }, 16 - } 17 - 18 - return config