diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml deleted file mode 100644 index bce1677..0000000 --- a/.config/alacritty/alacritty.yml +++ /dev/null @@ -1,103 +0,0 @@ -# Window Customization -window: - opacity: 0.95 - dimensions: - columns: 122 - lines: 50 - # padding: - # x: 10 - # y: 10 - dynamic_padding: true - decorations: none -scrolling: - history: 10000 - multiplier: 11 -window.dynamic_title: false - -env: - WINIT_X11_SCALE_FACTOR: "1.0" - -# Font configuration (changes require restart) -font: - # The normal (roman) font face to use. - normal: - family: JetbrainsMono Nerd Font - # Style can be specified to pick a specific face. - style: Regular - - # The bold font face - bold: - family: JetbrainsMono Nerd Font - # Style can be specified to pick a specific face. - style: Bold - - # The italic font face - italic: - family: JetbrainsMono Nerd Font - # Style can be specified to pick a specific face. - style: italic - - -# XTerm's default colors -colors: - # Default colors - primary: - background: '0x000000' - foreground: '0xffffff' - # Normal colors - normal: - black: '#000000' - red: '#cd0000' - green: '#00cd00' - yellow: '#cdcd00' - blue: '#0000ee' - magenta: '#cd00cd' - cyan: '#00cdcd' - white: '#e5e5e5' - - # Bright colors - bright: - black: '#7f7f7f' - red: '#ff0000' - green: '#00ff00' - yellow: '#ffff00' - blue: '#5c5cff' - magenta: '#ff00ff' - cyan: '#00ffff' - white: '#ffffff' - -# Indexed Colors - # - # The indexed colors include all colors from 16 to 256. - # When these are not set, they're filled with sensible defaults. - #indexed_colors: - # - { index: 16, color: '0x000000' } - -# Extras -hide_cursor_when_typing: true - -cursor: - style: Block - #blinking: Always - #blink_interval: 750 - unfocused_hollow: true - - -key_bindings: - # (Windows, Linux, and BSD only) - - { key: V, mods: Control|Shift, action: Paste } - - { key: C, mods: Control|Shift, action: Copy } - - { key: Insert, mods: Shift, action: PasteSelection } - - { key: Key0, mods: Control, action: ResetFontSize } - - { key: Equals, mods: Control, action: IncreaseFontSize } - - { key: Plus, mods: Control, action: IncreaseFontSize } - - { key: Minus, mods: Control, action: DecreaseFontSize } - - { key: F11, mods: None, action: ToggleFullscreen } - - { key: Paste, mods: None, action: Paste } - - { key: Copy, mods: None, action: Copy } - - { key: L, mods: Control, action: ClearLogNotice } - - { key: L, mods: Control, chars: "\x0c" } - - { key: PageUp, mods: None, action: ScrollPageUp, mode: ~Alt } - - { key: PageDown, mods: None, action: ScrollPageDown, mode: ~Alt } - - { key: Home, mods: Shift, action: ScrollToTop, mode: ~Alt } - - { key: End, mods: Shift, action: ScrollToBottom, mode: ~Alt } diff --git a/.config/newsboat/urls b/.config/newsboat/urls index 809d5a7..6a24d67 100644 --- a/.config/newsboat/urls +++ b/.config/newsboat/urls @@ -3,6 +3,7 @@ https://matklad.github.io/feed.xml "programming" https://ihatereality.space/rss.xml "programming" https://fasterthanli.me/index.xml "programming" https://digdeeper.neocities.org/atom.xml +https://gnulinuxindia.org/index.xml https://lukesmith.xyz/rss.xml https://landchad.net/rss https://news.ycombinator.com/rss diff --git a/.config/shell/profile b/.config/shell/profile index 0933809..e07efd9 100644 --- a/.config/shell/profile +++ b/.config/shell/profile @@ -26,7 +26,7 @@ export __GL_SHADER_DISK_CACHE_PATH=~/.cache/ # Other program settings export SUDO_ASKPASS="$HOME/.local/bin/dmenupass" export FZF_DEFAULT_OPTS="--layout=reverse --height 40%" -export ANDROID_HOME="$XDG_DATA_HOME"/android +export ANDROID_SDK_HOME="${XDG_CONFIG_HOME:-$HOME/.config}/android" export PATH=$PATH:$HOME/.local/bin export PATH="$PATH:$XDG_DATA_HOME/cargo/bin" diff --git a/.local/bin/connect-wifi b/.local/bin/connect-wifi deleted file mode 100755 index c60bbe4..0000000 --- a/.local/bin/connect-wifi +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -bssid=$(nmcli device wifi list | sed -n '1!p' | cut -b 9- | dmenu -p "Select wifi:" -l 20 | cut -d' ' -f1) -pass=$(echo "" | dmenu -P -p "Enter Password: ") -nmcli device wifi connect $bssid password $pass -notify-send "sucessfully connected to $bssid"