diff options
Diffstat (limited to 'dot_config')
-rw-r--r-- | dot_config/alacritty/alacritty.yml | 207 | ||||
-rw-r--r-- | dot_config/qtile/__pycache__/config.cpython-311.pyc | bin | 7104 -> 0 bytes | |||
-rw-r--r-- | dot_config/qtile/config.py | 168 |
3 files changed, 0 insertions, 375 deletions
diff --git a/dot_config/alacritty/alacritty.yml b/dot_config/alacritty/alacritty.yml deleted file mode 100644 index 4518599..0000000 --- a/dot_config/alacritty/alacritty.yml +++ /dev/null @@ -1,207 +0,0 @@ -# Configuration for Alacritty, the GPU enhanced terminal emulator. - -# Import additional configuration files -# Imports are loaded in order, skipping all missing files, with the importing -# file being loaded last. If a field is already present in a previous import, it -# will be replaced. -# -# All imports must either be absolute paths starting with `/`, or paths relative -# to the user's home directory starting with `~/`. -#import: -# - /path/to/alacritty.yml - -# Any items in the `env` entry below will be added as -# environment variables. Some entries may override variables -# set by alacritty itself. -env: - TERM: xterm-256color - -window: - #dimensions: - # columns: 0 - # lines: 0 - - #position: - # x: 0 - # y: 0 - - padding: - x: 0 - y: 2 - - dynamic_padding: true - #opacity: 1.0 - dynamic_title: false - -shell: - program: /bin/bash - args: - - --init-file - - "/home/vitorg/.config/bash/rc" - -font: - normal: - family: monospace - style: Regular - - bold: - family: monospace - style: Bold - - italic: - family: monospace - style: Italic - - bold_italic: - family: monospace - style: Bold Italic - - size: 12.0 - - offset: - x: 0 - y: 0 - - #glyph_offset: - # x: 0 - # y: 0 - -draw_bold_text_with_bright_colors: true - -schemes: - gruvbox_material_hard_dark: &gruvbox_material_hard_dark - primary: - background: '0x1d2021' - foreground: '0xd4be98' - normal: - black: '0x32302f' - red: '0xea6962' - green: '0xa9b665' - yellow: '0xd8a657' - blue: '0x7daea3' - magenta: '0xd3869b' - cyan: '0x89b482' - white: '0xd4be98' - bright: - black: '0x32302f' - red: '0xea6962' - green: '0xa9b665' - yellow: '0xd8a657' - blue: '0x7daea3' - magenta: '0xd3869b' - cyan: '0x89b482' - white: '0xd4be98' - gruvbox_material_medium_dark: &gruvbox_material_medium_dark - primary: - background: '0x282828' - foreground: '0xd4be98' - normal: - black: '0x3c3836' - red: '0xea6962' - green: '0xa9b665' - yellow: '0xd8a657' - blue: '0x7daea3' - magenta: '0xd3869b' - cyan: '0x89b482' - white: '0xd4be98' - bright: - black: '0x3c3836' - red: '0xea6962' - green: '0xa9b665' - yellow: '0xd8a657' - blue: '0x7daea3' - magenta: '0xd3869b' - cyan: '0x89b482' - white: '0xd4be98' - gruvbox_material_soft_dark: &gruvbox_material_soft_dark - primary: - background: '0x32302f' - foreground: '0xd4be98' - normal: - black: '0x45403d' - red: '0xea6962' - green: '0xa9b665' - yellow: '0xd8a657' - blue: '0x7daea3' - magenta: '0xd3869b' - cyan: '0x89b482' - white: '0xd4be98' - bright: - black: '0x45403d' - red: '0xea6962' - green: '0xa9b665' - yellow: '0xd8a657' - blue: '0x7daea3' - magenta: '0xd3869b' - cyan: '0x89b482' - white: '0xd4be98' - gruvbox_material_hard_light: &gruvbox_material_hard_light - primary: - background: '0xf9f5d7' - foreground: '0x654735' - normal: - black: '0x654735' - red: '0xc14a4a' - green: '0x6c782e' - yellow: '0xb47109' - blue: '0x45707a' - magenta: '0x945e80' - cyan: '0x4c7a5d' - white: '0xf2e5bc' - bright: - black: '0x654735' - red: '0xc14a4a' - green: '0x6c782e' - yellow: '0xb47109' - blue: '0x45707a' - magenta: '0x945e80' - cyan: '0x4c7a5d' - white: '0xf2e5bc' - gruvbox_material_medium_light: &gruvbox_material_medium_light - primary: - background: '0xfbf1c7' - foreground: '0x654735' - normal: - black: '0x654735' - red: '0xc14a4a' - green: '0x6c782e' - yellow: '0xb47109' - blue: '0x45707a' - magenta: '0x945e80' - cyan: '0x4c7a5d' - white: '0xeee0b7' - bright: - black: '0x654735' - red: '0xc14a4a' - green: '0x6c782e' - yellow: '0xb47109' - blue: '0x45707a' - magenta: '0x945e80' - cyan: '0x4c7a5d' - white: '0xeee0b7' - gruvbox_material_soft_light: &gruvbox_material_soft_light - primary: - background: '0xf2e5bc' - foreground: '0x654735' - normal: - black: '0x654735' - red: '0xc14a4a' - green: '0x6c782e' - yellow: '0xb47109' - blue: '0x45707a' - magenta: '0x945e80' - cyan: '0x4c7a5d' - white: '0xe6d5ae' - bright: - black: '0x654735' - red: '0xc14a4a' - green: '0x6c782e' - yellow: '0xb47109' - blue: '0x45707a' - magenta: '0x945e80' - cyan: '0x4c7a5d' - white: '0xe6d5ae' - -# Apply the color scheme. -colors: *gruvbox_material_medium_dark - diff --git a/dot_config/qtile/__pycache__/config.cpython-311.pyc b/dot_config/qtile/__pycache__/config.cpython-311.pyc deleted file mode 100644 index b06e7a3..0000000 --- a/dot_config/qtile/__pycache__/config.cpython-311.pyc +++ /dev/null Binary files differdiff --git a/dot_config/qtile/config.py b/dot_config/qtile/config.py deleted file mode 100644 index cfe5698..0000000 --- a/dot_config/qtile/config.py +++ /dev/null @@ -1,168 +0,0 @@ -from libqtile import bar, layout, widget -from libqtile.config import Click, Drag, Group, Key, Match, Screen -from libqtile.lazy import lazy - -mod = "mod4" -terminal = "alacritty" -browser = "firefox" -run_prompt = "dmenu_run" - -# colors -accent = "#ea6962" -accent2 = "#d8a657" -bg_col = "#282828" -fg_col = "#d4be98" - -# custom functions -def SplitString(string): - return list(string.split(" ")) - -keys = [ - Key([mod], "j", - lazy.layout.down(), - desc="Move focus down"), - Key([mod], "k", - lazy.layout.up(), - desc="Move focus up"), - - Key([mod, "shift"], "j", - lazy.layout.shuffle_down(), - desc="Move window down"), - Key([mod, "shift"], "k", - lazy.layout.shuffle_up(), - desc="Move window up"), - - Key([mod], "h", - lazy.layout.grow(), - desc="Grow window to the left"), - Key([mod], "l", - lazy.layout.shrink(), - desc="Grow window to the right"), - Key([mod], "n", - lazy.layout.normalize(), - desc="Reset all window sizes"), - - Key([mod], "Return", - lazy.spawn(terminal), - desc="Launch terminal"), - Key([mod], "b", - lazy.spawn(browser), - desc="Launch browser"), - Key([mod], "r", - lazy.spawn(run_prompt), - desc="Spawn a command using a prompt widget"), - Key([mod], "p", - lazy.spawn("screenshotit"), - desc="Literally a screenshot utility, wow"), - Key([mod, "shift"], "s", - lazy.spawn("shorten-clipb"), - desc="Shortens a url (via 0.vern.cc) that's on the clipboard"), - - Key([mod], "space", - lazy.next_layout(), - desc="Toggle between layouts"), - Key([mod], "w", - lazy.window.kill(), - desc="Kill focused window"), - Key([mod, "shift"], "r", - lazy.reload_config(), - desc="Reload the config"), - Key([mod, "shift"], "q", - lazy.shutdown(), - desc="Shutdown Qtile"), -] - -groups = [Group(i) for i in "123456789"] - -for i in groups: - keys.extend( - [ - # mod1 + letter of group = switch to group - Key( - [mod], - i.name, - lazy.group[i.name].toscreen(), - desc="Switch to group {}".format(i.name), - ), - - # mod1 + shift + letter of group = move focused window to group - Key([mod, "shift"], i.name, - lazy.window.togroup(i.name), - desc="move focused window to group {}".format(i.name)), - ] - ) - -layouts = [ - layout.MonadTall(border_focus = accent, - border_unfocus = "#222222", - border_width = 1, - margin = 2), - layout.Max(), -] - -widget_defaults = dict( - font = "monospace", - fontsize = 12, - padding = 3, - background = bg_col, - foreground = fg_col, -) - -screens = [ - Screen( - top=bar.Bar( - [ - widget.CurrentLayoutIcon(scale=0.8, custom_icon_paths="~/.config/qtile/icons"), - widget.GroupBox(rounded=False, highlight_method="line", highlight_color=accent, active=fg_col, inactive=fg_col, urgent_border=accent2, this_current_screen_border=accent, margin=3, disable_drag=True, hide_unused=True), - #widget.WindowName(), - widget.Spacer(length=bar.STRETCH), - widget.Chord( - chords_colors={ - "launch": ("#ff0000", "#ffffff"), - }, - name_transform=lambda name: name.upper(), - ), - # widget.StatusNotifier(), - widget.Systray(), - widget.Clock(format="%Y-%m-%d %a %I:%M %p"), - ], - 24, - # border_width=[2, 0, 2, 0], # Draw top and bottom borders - # border_color=["ff00ff", "000000", "ff00ff", "000000"] # Borders are magenta - ), - ), -] - -# Drag floating layouts. -mouse = [ - Drag([mod], "Button1", lazy.window.set_position_floating(), start=lazy.window.get_position()), - Drag([mod], "Button3", lazy.window.set_size_floating(), start=lazy.window.get_size()), - Click([mod], "Button2", lazy.window.toggle_floating()) -] - -dgroups_key_binder = None -dgroups_app_rules = [] # type: list -follow_mouse_focus = True -bring_front_click = False -cursor_warp = False -floating_layout = layout.Floating( - float_rules=[ - # Run the utility of `xprop` to see the wm class and name of an X client. - *layout.Floating.default_float_rules, - Match(wm_class="confirmreset"), # gitk - Match(wm_class="makebranch"), # gitk - Match(wm_class="maketag"), # gitk - Match(wm_class="ssh-askpass"), # ssh-askpass - Match(title="branchdialog"), # gitk - Match(title="pinentry"), # GPG key password entry - ] -) -auto_fullscreen = True -focus_on_window_activation = "smart" -reconfigure_screens = True - -auto_minimize = False - -wl_input_rules = None - -wmname = "LG3D" |