From ced228102b1f9dcad6164f928c12256c8393b867 Mon Sep 17 00:00:00 2001 From: thatscringebro Date: Fri, 16 Dec 2022 16:41:25 -0500 Subject: [PATCH] Added arch files --- arch/i3/config | 211 ++++++++++++++++++++++++++++++++++++++++ arch/kitty/kitty.conf | 111 +++++++++++++++++++++ arch/polybar/config.ini | 174 +++++++++++++++++++++++++++++++++ arch/polybar/launch.sh | 7 ++ 4 files changed, 503 insertions(+) create mode 100644 arch/i3/config create mode 100755 arch/kitty/kitty.conf create mode 100644 arch/polybar/config.ini create mode 100755 arch/polybar/launch.sh diff --git a/arch/i3/config b/arch/i3/config new file mode 100644 index 0000000..74111e4 --- /dev/null +++ b/arch/i3/config @@ -0,0 +1,211 @@ +set $mod Mod4 + +set $up k +set $right l +set $down j +set $left h + +set $w1 1 +set $w2 2 +set $w3 3 +set $w4 4 +set $w5 5 +set $w6 6 +set $w7 7 +set $w8 8 +set $w9 9 +set $w10 10 + +# Colors +set $active #e500af +set $inactive #181818 + +# Font for window titles. Will also be used by the bar unless a different font +# is used in the bar {} block below. +font pango:Hack Nerd Font bold 10 + +# This font is widely installed, provides lots of unicode glyphs, right-to-left +# text rendering and scalability on retina/hidpi displays (thanks to pango). +#font pango:Hack 10 + +# Before i3 v4.8, we used to recommend this one as the default: +# font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1 +# The font above is very space-efficient, that is, it looks good, sharp and +# clear in small sizes. However, its unicode glyph coverage is limited, the old +# X core fonts rendering does not support right-to-left and this being a bitmap +# font, it doesn’t scale on retina/hidpi displays. + +# Use Mouse+$mod to drag floating windows to their wanted position +floating_modifier $mod + +# start a terminal +bindsym $mod+Return exec kitty + +# kill focused window +bindsym $mod+Shift+q kill + +# There also is the (new) i3-dmenu-desktop which only displays applications +# shipping a .desktop file. It is a wrapper around dmenu, so you need that +# installed. +bindsym $mod+d exec --no-startup-id i3-dmenu-desktop + +# change focus +bindsym $mod+$left focus left +bindsym $mod+$down focus down +bindsym $mod+$up focus up +bindsym $mod+$right focus right + +# alternatively, you can use the cursor keys: +bindsym $mod+Left focus left +bindsym $mod+Down focus down +bindsym $mod+Up focus up +bindsym $mod+Right focus right + +# move focused window +bindsym $mod+Shift+$left move left +bindsym $mod+Shift+$down move down +bindsym $mod+Shift+$up move up +bindsym $mod+Shift+$right move right + +# alternatively, you can use the cursor keys: +bindsym $mod+Shift+Left move left +bindsym $mod+Shift+Down move down +bindsym $mod+Shift+Up move up +bindsym $mod+Shift+Right move right + +# split in horizontal orientation +bindsym $mod+c split h + +# split in vertical orientation +bindsym $mod+v split v + +# enter fullscreen mode for the focused container +bindsym $mod+f fullscreen toggle + +# change container layout (stacked, tabbed, toggle split) +bindsym $mod+s layout stacking +bindsym $mod+w layout tabbed +#bindsym $mod+d layout toggle split + +# toggle tiling / floating +bindsym $mod+Shift+x floating toggle + +# change focus between tiling / floating windows +bindsym $mod+x focus mode_toggle + +# focus the parent container +# bindsym $mod+a focus parent + +# focus the child container +# bindsym $mod+Shift+a focus child + +# switch to workspace +bindsym $mod+1 workspace $w1 +bindsym $mod+2 workspace $w2 +bindsym $mod+3 workspace $w3 +bindsym $mod+4 workspace $w4 +bindsym $mod+5 workspace $w5 +bindsym $mod+6 workspace $w6 +bindsym $mod+7 workspace $w7 +bindsym $mod+8 workspace $w8 +bindsym $mod+9 workspace $w9 +bindsym $mod+0 workspace $w10 + +# move focused container to workspace +bindsym $mod+Shift+1 move container to workspace $w1 +bindsym $mod+Shift+2 move container to workspace $w2 +bindsym $mod+Shift+3 move container to workspace $w3 +bindsym $mod+Shift+4 move container to workspace $w4 +bindsym $mod+Shift+5 move container to workspace $w5 +bindsym $mod+Shift+6 move container to workspace $w6 +bindsym $mod+Shift+7 move container to workspace $w7 +bindsym $mod+Shift+8 move container to workspace $w8 +bindsym $mod+Shift+9 move container to workspace $w9 +bindsym $mod+Shift+0 move container to workspace $w10 + +# reload the configuration file +bindsym $mod+Shift+c reload +# restart i3 inplace (preserves your layout/session, can be used to upgrade i3) +bindsym $mod+Shift+r restart +# exit i3 (logs you out of your X session) +bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'" + +# resize window (you can also use the mouse for that) +mode "resize" { + # These bindings trigger as soon as you enter the resize mode + + # Pressing left will shrink the window’s width. + # Pressing right will grow the window’s width. + # Pressing up will shrink the window’s height. + # Pressing down will grow the window’s height. + bindsym $left resize shrink width 10 px or 10 ppt + bindsym $down resize grow height 10 px or 10 ppt + bindsym $up resize shrink height 10 px or 10 ppt + bindsym $right resize grow width 10 px or 10 ppt + + + bindsym Shift+$left resize shrink width 50 px or 10 ppt + bindsym Shift+$down resize grow height 50 px or 10 ppt + bindsym Shift+$up resize shrink height 50 px or 10 ppt + bindsym Shift+$right resize grow width 50 px or 10 ppt + + # same bindings, but for the arrow keys + bindsym Left resize shrink width 10 px or 10 ppt + bindsym Down resize grow height 10 px or 10 ppt + bindsym Up resize shrink height 10 px or 10 ppt + bindsym Right resize grow width 10 px or 10 ppt + + # back to normal: Enter or Escape + bindsym Return mode "default" + bindsym Escape mode "default" +} + +bindsym $mod+r mode "resize" + + +## Style +# border color +# class border backgr. text +client.focused $active $active $inactive $active +client.unfocused $inactive $inactive $active $inactive +client.focused_inactive $inactive $inactive #4f97d7 $inactive +client.urgent $inactive $inactive #4f97d7 $inactive + +new_window pixel 1 +default_border pixel 1 + +# Disable title bar + +# Polybar +exec_always --no-startup-id sh ~/.config/polybar/launch.sh + +# Audio +bindsym XF86AudioRaiseVolume exec "amixer -D pulse set Master 5%+" +bindsym XF86AudioLowerVolume exec "amixer -D pulse set Master 5%-" +bindsym XF86AudioMute exec "amixer -D pulse set Master 1+ toggle" + +# Screenshots +bindsym --release Print exec --no-startup-id gnome-screenshot -f "$HOME/Pictures/$(date +%F_%H-%M-%S).png" +bindsym $mod+Print --release exec --no-startup-id i3-scrot -w +bindsym Ctrl+Print --release exec --no-startup-id i3-scrot -wc +bindsym $mod+Shift+Print --release exec --no-startup-id i3-scrot -s +bindsym Ctrl+Shift+Print --release exec --no-startup-id i3-scrot -sc + +# Screen brightness +bindsym XF86MonBrightnessUp exec --no-startup-id xbacklight -inc 20 +bindsym XF86MonBrightnessDown exec --no-startup-id xbacklight -dec 20 + +# no mouse follow +focus_follows_mouse no + +# Background +exec --no-startup-id feh --bg-scale ~/Downloads/Wallpaper.jpg + +# Picom +exec --no-startup-id picom --experimental-backends -f + +# Gaps +#smart_gaps on +#smart_borders on +gaps inner 10 +gaps outer 10 diff --git a/arch/kitty/kitty.conf b/arch/kitty/kitty.conf new file mode 100755 index 0000000..13f367d --- /dev/null +++ b/arch/kitty/kitty.conf @@ -0,0 +1,111 @@ +# Environment Variables +env TERM=xterm-256color +env COLORTERM=truecolor +env CURRENT_DEVICE=laptop + +# Window +remember_window_size no +initial_window_width 1750 +initial_window_height 950 + +# Render +repaint_delay 1 +input_delay 1 +sync_to_monitor no +mouse_hide_wait 1.0 + +# Bell +enable_audio_bell no +window_alert_on_bell no + + +# Mappings +clear_all_shortcuts yes +kitty_mod ctrl+shift +map kitty_mod+c copy_to_clipboard +map kitty_mod+v paste_from_clipboard +map kitty_mod+space clear_terminal reset active +map kitty_mod+up scroll_line_up +map kitty_mod+k scroll_line_up +map kitty_mod+down scroll_line_down +map kitty_mod+j scroll_line_down +map kitty_mod+page_up scroll_page_up +map kitty_mod+page_down scroll_page_down +map kitty_mod+home scroll_home +map kitty_mod+end scroll_end + +map kitty_mod+equal change_font_size all +2.0 +map kitty_mod+plus change_font_size all +2.0 +map kitty_mod+minus change_font_size all -2.0 +map kitty_mod+kp_subtract change_font_size all -2.0 +map kitty_mod+backspace change_font_size all 0 + +# -= STYLE =------------------------------------------------------------------- +# cursor +cursor_shape block + +# Fonts +font_family Cascaydia Mono Regular +bold_font Cascaydia Mono Bold +italic_font Cascaydia Mono Italic +bold_italic_font Cascaydia Mono Bold Italic +font_size 13 +adjust_line_height 1 + + +# Colorscheme +dim_opacity 1.0 +background_opacity 0.7 + +cursor #f500af +cursor_text_color background + +url_color #83a598 + +visual_bell_color #8ec07c +bell_border_color #8ec07c + +active_border_color #d3869b +inactive_border_color #665c54 + +background #262b34 +foreground #31ccee +selection_foreground #175f6e +selection_background #d75d9f + +active_tab_foreground #fbf1c7 +active_tab_background #665c54 +inactive_tab_foreground #a89984 +inactive_tab_background #3c3836 + +# black +color0 #000000 +color8 #121212 + +# red +color1 #e10600 +color9 #ed1d24 + +#: green +color2 #0ac71a +color10 #00b140 + +# yellow +color3 #ffe900 +color11 #f6eb61 + +# blue +color4 #0827f5 +color12 #00aeef + +# purple +color5 #c724b1 +color13 #ac4fc6 + +# aqua +color6 #00ffff +color14 #07da9a + +# white +color7 #FFFFFF +color15 #898989 diff --git a/arch/polybar/config.ini b/arch/polybar/config.ini new file mode 100644 index 0000000..f0a7455 --- /dev/null +++ b/arch/polybar/config.ini @@ -0,0 +1,174 @@ +;========================================================== +; +; +; ██████╗ ██████╗ ██╗ ██╗ ██╗██████╗ █████╗ ██████╗ +; ██╔══██╗██╔═══██╗██║ ╚██╗ ██╔╝██╔══██╗██╔══██╗██╔══██╗ +; ██████╔╝██║ ██║██║ ╚████╔╝ ██████╔╝███████║██████╔╝ +; ██╔═══╝ ██║ ██║██║ ╚██╔╝ ██╔══██╗██╔══██║██╔══██╗ +; ██║ ╚██████╔╝███████╗██║ ██████╔╝██║ ██║██║ ██║ +; ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ +; +; +; To learn more about how to configure Polybar +; go to https://github.com/polybar/polybar +; +; The README contains a lot of information +; +;========================================================== + +[colors] +background = #282A2E +background-alt = #373B41 +foreground = #C5C8C6 +primary = #d3869b +secondary = #d75d9f +alert = #0ac71a +disabled = #707880 + +[bar/mybar] +width = 100% +height = 24pt +radius = 6 + +; dpi = 96 + +background = ${colors.background} +foreground = ${colors.foreground} + +line-size = 3pt + +border-size = 4pt +border-color = #00000000 + +padding-left = 0 +padding-right = 1 + +module-margin = 1 + +separator = | +separator-foreground = ${colors.disabled} + +font-0 = CaskaydiaCove Nerd Font Mono;2 + +modules-left = xworkspaces xwindow +modules-right = pulseaudio memory cpu date + +cursor-click = pointer +cursor-scroll = ns-resize + +enable-ipc = true + +; tray-position = right + +; wm-restack = generic +; wm-restack = bspwm +; wm-restack = i3 + +; override-redirect = true + +[module/xworkspaces] +type = internal/xworkspaces + +label-active =  +label-active-foreground = #FCEDF7 +#label-active-background = ${colors.background-alt} +#label-active-underline= ${colors.primary} +label-active-padding = 1 + +label-occupied-foreground = #f500af +label-occupied =  +label-occupied-padding = 1 + +label-urgent = %name% +label-urgent-background = ${colors.alert} +label-urgent-padding = 1 + +label-empty =  +label-empty-foreground = ${colors.disabled} +label-empty-padding = 1 + +[module/xwindow] +type = internal/xwindow +label = %title:0:60:...% + +[module/filesystem] +type = internal/fs +interval = 25 + +mount-0 = / + +label-mounted = %{F#F0C674}%mountpoint%%{F-} %percentage_used%% + +label-unmounted = %mountpoint% not mounted +label-unmounted-foreground = ${colors.disabled} + +[module/pulseaudio] +type = internal/pulseaudio + +format-volume-prefix = "VOL " +format-volume-prefix-foreground = ${colors.primary} +format-volume = + +label-volume = %percentage%% + +label-muted = muted +label-muted-foreground = ${colors.disabled} + +[module/xkeyboard] +type = internal/xkeyboard +blacklist-0 = num lock + +label-layout = %layout% +label-layout-foreground = ${colors.primary} + +label-indicator-padding = 2 +label-indicator-margin = 1 +label-indicator-foreground = ${colors.background} +label-indicator-background = ${colors.secondary} + +[module/memory] +type = internal/memory +interval = 2 +format-prefix = "RAM " +format-prefix-foreground = ${colors.primary} +label = %percentage_used:2%% + +[module/cpu] +type = internal/cpu +interval = 2 +format-prefix = "CPU " +format-prefix-foreground = ${colors.primary} +label = %percentage:2%% + +[network-base] +type = internal/network +interval = 5 +format-connected = +format-disconnected = +label-disconnected = %{F#F0C674}%ifname%%{F#707880} disconnected + +[module/wlan] +inherit = network-base +interface-type = wireless +label-connected = %{F#F0C674}%ifname%%{F-} %essid% %local_ip% + +[module/eth] +inherit = network-base +interface-type = wired +label-connected = %{F#F0C674}%ifname%%{F-} %local_ip% + +[module/date] +type = internal/date +interval = 1 + +date = %H:%M +date-alt = %Y-%m-%d %H:%M:%S + +label = %date% +label-foreground = ${colors.primary} + +[settings] +screenchange-reload = true +pseudo-transparency = true + +; vim:ft=dosini diff --git a/arch/polybar/launch.sh b/arch/polybar/launch.sh new file mode 100755 index 0000000..0bfebf7 --- /dev/null +++ b/arch/polybar/launch.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +killall -q polybar + +while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done + +polybar mybar