Added initial configuration for X11 enviroment [WIP]
This commit is contained in:
@@ -30,6 +30,12 @@ This repository contains my configuration files for the following tools:
|
||||
- `doom emacs`
|
||||
- `git`
|
||||
- `lazygit`
|
||||
- **X11 Environment**
|
||||
- `rofi` (launcher)
|
||||
- `polybar` (status bar)
|
||||
- `dunst` (notification daemon)
|
||||
- `i3` (window manager)
|
||||
- `picom` (X11 compositor)
|
||||
- **Wayland Environment**
|
||||
- `fuzzel` (launcher)
|
||||
- `waybar` (status bar)
|
||||
|
||||
35
i3/.config/i3/autostart.sh
Executable file
35
i3/.config/i3/autostart.sh
Executable file
@@ -0,0 +1,35 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Compositor
|
||||
picom --config ~/.config/picom/picom.conf &
|
||||
|
||||
# Polybar
|
||||
~/.config/polybar/launch.sh
|
||||
|
||||
# Notifications
|
||||
dunst &
|
||||
|
||||
# Wallpaper
|
||||
feh --bg-scale ~/.config/i3/wallpaper.jpg &
|
||||
|
||||
# Audio
|
||||
pipewire &
|
||||
# pipewire-pulse &
|
||||
|
||||
# Clipboard manager
|
||||
# xfce4-clipman &
|
||||
|
||||
# Screenshot tool
|
||||
flameshot &
|
||||
|
||||
# GTK settings
|
||||
xsettingsd &
|
||||
|
||||
# Lock screen auto
|
||||
xautolock -time 5 -locker "i3lock-color -c 000000" -detectsleep &
|
||||
|
||||
# Network manager applet
|
||||
nm-applet &
|
||||
|
||||
# Autotiling
|
||||
i3-auto-layout --limit 2 &
|
||||
301
i3/.config/i3/config
Normal file
301
i3/.config/i3/config
Normal file
@@ -0,0 +1,301 @@
|
||||
# i3 config file (v4)
|
||||
#
|
||||
# Please see https://i3wm.org/docs/userguide.html for a complete reference!
|
||||
#
|
||||
# This config file uses keycodes (bindsym) and was written for the QWERTY
|
||||
# layout.
|
||||
#
|
||||
# To get a config file with the same key positions, but for your current
|
||||
# layout, use the i3-config-wizard
|
||||
#
|
||||
|
||||
# Import Catppuccin theme defined colors
|
||||
#include themes/catppuccin-mocha
|
||||
set $rosewater #f5e0dc
|
||||
set $flamingo #f2cdcd
|
||||
set $pink #f5c2e7
|
||||
set $mauve #cba6f7
|
||||
set $red #f38ba8
|
||||
set $maroon #eba0ac
|
||||
set $peach #fab387
|
||||
set $yellow #f9e2af
|
||||
set $green #a6e3a1
|
||||
set $teal #94e2d5
|
||||
set $sky #89dceb
|
||||
set $sapphire #74c7ec
|
||||
set $blue #89b4fa
|
||||
set $lavender #b4befe
|
||||
set $text #cdd6f4
|
||||
set $subtext1 #bac2de
|
||||
set $subtext0 #a6adc8
|
||||
set $overlay2 #9399b2
|
||||
set $overlay1 #7f849c
|
||||
set $overlay0 #6c7086
|
||||
set $surface2 #585b70
|
||||
set $surface1 #45475a
|
||||
set $surface0 #313244
|
||||
set $base #1e1e2e
|
||||
set $mantle #181825
|
||||
set $crust #11111b
|
||||
|
||||
# target title bg text indicator border
|
||||
client.focused $lavender $base $text $rosewater $lavender
|
||||
client.focused_inactive $overlay0 $base $text $rosewater $overlay0
|
||||
client.unfocused $overlay0 $base $text $rosewater $overlay0
|
||||
client.urgent $peach $base $peach $overlay0 $peach
|
||||
client.placeholder $overlay0 $base $text $overlay0 $overlay0
|
||||
client.background $base
|
||||
|
||||
# Setting cursor
|
||||
# seat seat0 xcursor_theme catppuccin-mocha-lavender-cursors 25
|
||||
|
||||
# Logo key. Use Mod1 for Alt.
|
||||
set $mod Mod4
|
||||
|
||||
# Font for window titles. Will also be used by the bar unless a different font
|
||||
# is used in the bar {} block below.
|
||||
font pango:Noto Sans Regular 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:DejaVu Sans Mono 8
|
||||
|
||||
# Start XDG autostart .desktop files using dex. See also
|
||||
# https://wiki.archlinux.org/index.php/XDG_Autostart
|
||||
exec --no-startup-id dex --autostart --environment i3
|
||||
|
||||
# The combination of xss-lock, nm-applet and pactl is a popular choice, so
|
||||
# they are included here as an example. Modify as you see fit.
|
||||
|
||||
# xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the
|
||||
# screen before suspend. Use loginctl lock-session to lock your screen.
|
||||
exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork
|
||||
|
||||
# NetworkManager is the most popular way to manage wireless networks on Linux,
|
||||
# and nm-applet is a desktop environment-independent system tray GUI for it.
|
||||
exec --no-startup-id nm-applet
|
||||
|
||||
# Use pactl to adjust volume in PulseAudio.
|
||||
set $refresh_i3status killall -SIGUSR1 i3status
|
||||
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10% && $refresh_i3status
|
||||
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10% && $refresh_i3status
|
||||
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status
|
||||
bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status
|
||||
|
||||
# use these keys for focus, movement, and resize directions when reaching for
|
||||
# the arrows is not convenient
|
||||
set $left h
|
||||
set $down j
|
||||
set $up k
|
||||
set $right l
|
||||
|
||||
# use Mouse+Mod4 to drag floating windows to their wanted position
|
||||
floating_modifier Mod4
|
||||
|
||||
# move tiling windows via drag & drop by left-clicking into the title bar,
|
||||
# or left-clicking anywhere into the window while holding the floating modifier.
|
||||
tiling_drag modifier titlebar
|
||||
|
||||
set $term 'kitty'
|
||||
set $menu 'rofi -show drun'
|
||||
set $browser 'firefox'
|
||||
set $notification 'dunst'
|
||||
set $filemanager 'yazi'
|
||||
set $editor 'emacs'
|
||||
|
||||
# Windows configuration
|
||||
default_border pixel 3
|
||||
default_floating_border pixel 3
|
||||
gaps inner 5
|
||||
gaps outer 5
|
||||
|
||||
# Floating/sticky windows
|
||||
for_window [class="Pop-up"] floating enable
|
||||
for_window [class="Bubble"] floating enable
|
||||
for_window [class="Task_dialog"] floating enable
|
||||
for_window [class="Preferences"] floating enable
|
||||
for_window [class="Dialog"] floating enable
|
||||
for_window [class="Menu"] floating enable
|
||||
for_window [class="Organizer"] floating enable
|
||||
for_window [class="About"] floating enable
|
||||
for_window [class="Toolbox"] floating enable
|
||||
for_window [class="Page-info"] floating enable
|
||||
for_window [class="Webconsole"] floating enable
|
||||
for_window [class="Authy"] floating enable
|
||||
for_window [class="Termfloat"] floating enable, resize set 960 540
|
||||
for_window [class="Mpv"] floating enable, resize set 960 540
|
||||
|
||||
# Workspaces
|
||||
assign [class="Emacs"] 1
|
||||
assign [class="Firefox"] 2
|
||||
assign [class="Telegram"] 3
|
||||
focus_follows_mouse no
|
||||
|
||||
# start a terminal
|
||||
bindsym Mod4+Return exec $term
|
||||
|
||||
# kill focused window
|
||||
bindsym Mod4+Shift+q kill
|
||||
|
||||
# start dmenu (a program launcher)
|
||||
bindsym Mod4+d exec --no-startup-id $menu
|
||||
|
||||
# A more modern dmenu replacement is rofi:
|
||||
# bindsym Mod4+d exec "rofi -modi drun,run -show drun"
|
||||
# There also is i3-dmenu-desktop which only displays applications shipping a
|
||||
# .desktop file. It is a wrapper around dmenu, so you need that installed.
|
||||
# bindsym Mod4+d exec --no-startup-id i3-dmenu-desktop
|
||||
|
||||
bindsym $mod+Shift+b exec $browser
|
||||
# bindsym $mod+Shift+v exec xfce4-clipman-history
|
||||
bindsym $mod+Shift+f exec $filemanager
|
||||
|
||||
# change focus
|
||||
bindsym Mod4+$left focus left
|
||||
bindsym Mod4+$down focus down
|
||||
bindsym Mod4+$up focus up
|
||||
bindsym Mod4+$right focus right
|
||||
|
||||
# alternatively, you can use the cursor keys:
|
||||
bindsym Mod4+Left focus left
|
||||
bindsym Mod4+Down focus down
|
||||
bindsym Mod4+Up focus up
|
||||
bindsym Mod4+Right focus right
|
||||
|
||||
# move focused window
|
||||
bindsym Mod4+Shift+$left move left
|
||||
bindsym Mod4+Shift+$down move down
|
||||
bindsym Mod4+Shift+$up move up
|
||||
bindsym Mod4+Shift+$right move right
|
||||
|
||||
# alternatively, you can use the cursor keys:
|
||||
bindsym Mod4+Shift+Left move left
|
||||
bindsym Mod4+Shift+Down move down
|
||||
bindsym Mod4+Shift+Up move up
|
||||
bindsym Mod4+Shift+Right move right
|
||||
|
||||
# split in horizontal orientation
|
||||
#bindsym Mod4+h split h
|
||||
|
||||
# split in vertical orientation
|
||||
bindsym Mod4+v split v
|
||||
|
||||
# enter fullscreen mode for the focused container
|
||||
bindsym Mod4+f fullscreen toggle
|
||||
|
||||
# change container layout (stacked, tabbed, toggle split)
|
||||
bindsym Mod4+s layout stacking
|
||||
bindsym Mod4+w layout tabbed
|
||||
bindsym Mod4+e layout toggle split
|
||||
|
||||
# toggle tiling / floating
|
||||
bindsym Mod4+Shift+space floating toggle
|
||||
|
||||
# change focus between tiling / floating windows
|
||||
bindsym Mod4+space focus mode_toggle
|
||||
|
||||
# focus the parent container
|
||||
bindsym Mod4+a focus parent
|
||||
|
||||
# focus the child container
|
||||
#bindsym Mod4+d focus child
|
||||
|
||||
# move the currently focused window to the scratchpad
|
||||
bindsym Mod4+Shift+minus move scratchpad
|
||||
|
||||
# Show the next scratchpad window or hide the focused scratchpad window.
|
||||
# If there are multiple scratchpad windows, this command cycles through them.
|
||||
bindsym Mod4+minus scratchpad show
|
||||
|
||||
# Define names for default workspaces for which we configure key bindings later on.
|
||||
# We use variables to avoid repeating the names in multiple places.
|
||||
set $ws1 "1"
|
||||
set $ws2 "2"
|
||||
set $ws3 "3"
|
||||
set $ws4 "4"
|
||||
set $ws5 "5"
|
||||
set $ws6 "6"
|
||||
set $ws7 "7"
|
||||
set $ws8 "8"
|
||||
set $ws9 "9"
|
||||
set $ws10 "10"
|
||||
|
||||
# switch to workspace
|
||||
bindsym Mod4+1 workspace number $ws1
|
||||
bindsym Mod4+2 workspace number $ws2
|
||||
bindsym Mod4+3 workspace number $ws3
|
||||
bindsym Mod4+4 workspace number $ws4
|
||||
bindsym Mod4+5 workspace number $ws5
|
||||
bindsym Mod4+6 workspace number $ws6
|
||||
bindsym Mod4+7 workspace number $ws7
|
||||
bindsym Mod4+8 workspace number $ws8
|
||||
bindsym Mod4+9 workspace number $ws9
|
||||
bindsym Mod4+0 workspace number $ws10
|
||||
|
||||
# move focused container to workspace
|
||||
bindsym Mod4+Shift+1 move container to workspace number $ws1
|
||||
bindsym Mod4+Shift+2 move container to workspace number $ws2
|
||||
bindsym Mod4+Shift+3 move container to workspace number $ws3
|
||||
bindsym Mod4+Shift+4 move container to workspace number $ws4
|
||||
bindsym Mod4+Shift+5 move container to workspace number $ws5
|
||||
bindsym Mod4+Shift+6 move container to workspace number $ws6
|
||||
bindsym Mod4+Shift+7 move container to workspace number $ws7
|
||||
bindsym Mod4+Shift+8 move container to workspace number $ws8
|
||||
bindsym Mod4+Shift+9 move container to workspace number $ws9
|
||||
bindsym Mod4+Shift+0 move container to workspace number $ws10
|
||||
|
||||
bindsym $mod+period workspace next
|
||||
bindsym $mod+comma workspace prev
|
||||
|
||||
# reload the configuration file
|
||||
bindsym Mod4+Shift+c reload
|
||||
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
|
||||
bindsym Mod4+Shift+r restart
|
||||
# exit i3 (logs you out of your X session)
|
||||
bindsym Mod4+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
|
||||
|
||||
# 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 or Mod4+r
|
||||
bindsym Return mode "default"
|
||||
bindsym Escape mode "default"
|
||||
bindsym Mod4+r mode "default"
|
||||
}
|
||||
|
||||
bindsym Mod4+r mode "resize"
|
||||
|
||||
# Start i3bar to display a workspace bar (plus the system information i3status
|
||||
# finds out, if available)
|
||||
bar {
|
||||
# status_command i3bar
|
||||
}
|
||||
|
||||
#######################################################################
|
||||
# automatically start i3-config-wizard to offer the user to create a
|
||||
# keysym-based config which used their favorite modifier (alt or windows)
|
||||
#
|
||||
# i3-config-wizard will not launch if there already is a config file
|
||||
# in ~/.config/i3/config (or $XDG_CONFIG_HOME/i3/config if set) or
|
||||
# ~/.i3/config.
|
||||
#
|
||||
# Please remove the following exec line:
|
||||
#######################################################################
|
||||
exec i3-config-wizard
|
||||
|
||||
26
i3/.config/i3/themes/catppuccin-frappe
Normal file
26
i3/.config/i3/themes/catppuccin-frappe
Normal file
@@ -0,0 +1,26 @@
|
||||
set $rosewater #f2d5cf
|
||||
set $flamingo #eebebe
|
||||
set $pink #f4b8e4
|
||||
set $mauve #ca9ee6
|
||||
set $red #e78284
|
||||
set $maroon #ea999c
|
||||
set $peach #ef9f76
|
||||
set $yellow #e5c890
|
||||
set $green #a6d189
|
||||
set $teal #81c8be
|
||||
set $sky #99d1db
|
||||
set $sapphire #85c1dc
|
||||
set $blue #8caaee
|
||||
set $lavender #babbf1
|
||||
set $text #c6d0f5
|
||||
set $subtext1 #b5bfe2
|
||||
set $subtext0 #a5adce
|
||||
set $overlay2 #949cbb
|
||||
set $overlay1 #838ba7
|
||||
set $overlay0 #737994
|
||||
set $surface2 #626880
|
||||
set $surface1 #51576d
|
||||
set $surface0 #414559
|
||||
set $base #303446
|
||||
set $mantle #292c3c
|
||||
set $crust #232634
|
||||
26
i3/.config/i3/themes/catppuccin-latte
Normal file
26
i3/.config/i3/themes/catppuccin-latte
Normal file
@@ -0,0 +1,26 @@
|
||||
set $rosewater #dc8a78
|
||||
set $flamingo #dd7878
|
||||
set $pink #ea76cb
|
||||
set $mauve #8839ef
|
||||
set $red #d20f39
|
||||
set $maroon #e64553
|
||||
set $peach #fe640b
|
||||
set $yellow #df8e1d
|
||||
set $green #40a02b
|
||||
set $teal #179299
|
||||
set $sky #04a5e5
|
||||
set $sapphire #209fb5
|
||||
set $blue #1e66f5
|
||||
set $lavender #7287fd
|
||||
set $text #4c4f69
|
||||
set $subtext1 #5c5f77
|
||||
set $subtext0 #6c6f85
|
||||
set $overlay2 #7c7f93
|
||||
set $overlay1 #8c8fa1
|
||||
set $overlay0 #9ca0b0
|
||||
set $surface2 #acb0be
|
||||
set $surface1 #bcc0cc
|
||||
set $surface0 #ccd0da
|
||||
set $base #eff1f5
|
||||
set $mantle #e6e9ef
|
||||
set $crust #dce0e8
|
||||
26
i3/.config/i3/themes/catppuccin-macchiato
Normal file
26
i3/.config/i3/themes/catppuccin-macchiato
Normal file
@@ -0,0 +1,26 @@
|
||||
set $rosewater #f4dbd6
|
||||
set $flamingo #f0c6c6
|
||||
set $pink #f5bde6
|
||||
set $mauve #c6a0f6
|
||||
set $red #ed8796
|
||||
set $maroon #ee99a0
|
||||
set $peach #f5a97f
|
||||
set $yellow #eed49f
|
||||
set $green #a6da95
|
||||
set $teal #8bd5ca
|
||||
set $sky #91d7e3
|
||||
set $sapphire #7dc4e4
|
||||
set $blue #8aadf4
|
||||
set $lavender #b7bdf8
|
||||
set $text #cad3f5
|
||||
set $subtext1 #b8c0e0
|
||||
set $subtext0 #a5adcb
|
||||
set $overlay2 #939ab7
|
||||
set $overlay1 #8087a2
|
||||
set $overlay0 #6e738d
|
||||
set $surface2 #5b6078
|
||||
set $surface1 #494d64
|
||||
set $surface0 #363a4f
|
||||
set $base #24273a
|
||||
set $mantle #1e2030
|
||||
set $crust #181926
|
||||
26
i3/.config/i3/themes/catppuccin-mocha
Normal file
26
i3/.config/i3/themes/catppuccin-mocha
Normal file
@@ -0,0 +1,26 @@
|
||||
set $rosewater #f5e0dc
|
||||
set $flamingo #f2cdcd
|
||||
set $pink #f5c2e7
|
||||
set $mauve #cba6f7
|
||||
set $red #f38ba8
|
||||
set $maroon #eba0ac
|
||||
set $peach #fab387
|
||||
set $yellow #f9e2af
|
||||
set $green #a6e3a1
|
||||
set $teal #94e2d5
|
||||
set $sky #89dceb
|
||||
set $sapphire #74c7ec
|
||||
set $blue #89b4fa
|
||||
set $lavender #b4befe
|
||||
set $text #cdd6f4
|
||||
set $subtext1 #bac2de
|
||||
set $subtext0 #a6adc8
|
||||
set $overlay2 #9399b2
|
||||
set $overlay1 #7f849c
|
||||
set $overlay0 #6c7086
|
||||
set $surface2 #585b70
|
||||
set $surface1 #45475a
|
||||
set $surface0 #313244
|
||||
set $base #1e1e2e
|
||||
set $mantle #181825
|
||||
set $crust #11111b
|
||||
BIN
i3/.config/i3/wallpaper.jpg
Normal file
BIN
i3/.config/i3/wallpaper.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 406 KiB |
14
i3/.config/picom/picom.conf
Normal file
14
i3/.config/picom/picom.conf
Normal file
@@ -0,0 +1,14 @@
|
||||
# Transparency and shadows
|
||||
shadow = true
|
||||
shadow-radius = 12
|
||||
shadow-offset-x = -12
|
||||
shadow-offset-y = -12
|
||||
shadow-opacity = 0.3
|
||||
|
||||
fading = true
|
||||
fade-in-step = 0.03
|
||||
fade-out-step = 0.03
|
||||
|
||||
backend = "glx"
|
||||
vsync = true
|
||||
|
||||
187
i3/.config/polybar/config.ini
Normal file
187
i3/.config/polybar/config.ini
Normal file
@@ -0,0 +1,187 @@
|
||||
;==========================================================
|
||||
;
|
||||
;
|
||||
; ██████╗ ██████╗ ██╗ ██╗ ██╗██████╗ █████╗ ██████╗
|
||||
; ██╔══██╗██╔═══██╗██║ ╚██╗ ██╔╝██╔══██╗██╔══██╗██╔══██╗
|
||||
; ██████╔╝██║ ██║██║ ╚████╔╝ ██████╔╝███████║██████╔╝
|
||||
; ██╔═══╝ ██║ ██║██║ ╚██╔╝ ██╔══██╗██╔══██║██╔══██╗
|
||||
; ██║ ╚██████╔╝███████╗██║ ██████╔╝██║ ██║██║ ██║
|
||||
; ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝
|
||||
;
|
||||
;
|
||||
; To learn more about how to configure Polybar
|
||||
; go to https://github.com/polybar/polybar
|
||||
;
|
||||
; The README contains a lot of information
|
||||
;
|
||||
;==========================================================
|
||||
|
||||
[global/wm]
|
||||
include-file = $HOME/.config/polybar/themes/mocha.ini
|
||||
|
||||
[colors]
|
||||
background = ${colors.base}
|
||||
background-alt = ${colors.mantle}
|
||||
foreground = ${colors.text}
|
||||
primary = ${colors.blue}
|
||||
secondary = ${colors.sapphire}
|
||||
alert = ${colors.red}
|
||||
disabled = ${colors.crust}
|
||||
|
||||
[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 = ComicShannsMono Nerd Font;2
|
||||
|
||||
modules-left = xworkspaces xwindow
|
||||
modules-right = filesystem pulseaudio xkeyboard memory cpu wlan eth date
|
||||
|
||||
cursor-click = pointer
|
||||
cursor-scroll = ns-resize
|
||||
|
||||
enable-ipc = true
|
||||
|
||||
; wm-restack = generic
|
||||
; wm-restack = bspwm
|
||||
; wm-restack = i3
|
||||
|
||||
; override-redirect = true
|
||||
|
||||
; This module is not active by default (to enable it, add it to one of the
|
||||
; modules-* list above).
|
||||
; Please note that only a single tray can exist at any time. If you launch
|
||||
; multiple bars with this module, only a single one will show it, the others
|
||||
; will produce a warning. Which bar gets the module is timing dependent and can
|
||||
; be quite random.
|
||||
; For more information, see the documentation page for this module:
|
||||
; https://polybar.readthedocs.io/en/stable/user/modules/tray.html
|
||||
[module/systray]
|
||||
type = internal/tray
|
||||
|
||||
format-margin = 8pt
|
||||
tray-spacing = 16pt
|
||||
|
||||
[module/xworkspaces]
|
||||
type = internal/xworkspaces
|
||||
|
||||
label-active = %name%
|
||||
label-active-background = ${colors.background-alt}
|
||||
label-active-underline= ${colors.primary}
|
||||
label-active-padding = 1
|
||||
|
||||
label-occupied = %name%
|
||||
label-occupied-padding = 1
|
||||
|
||||
label-urgent = %name%
|
||||
label-urgent-background = ${colors.alert}
|
||||
label-urgent-padding = 1
|
||||
|
||||
label-empty = %name%
|
||||
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>
|
||||
|
||||
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 = <label-connected>
|
||||
format-disconnected = <label-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
|
||||
13
i3/.config/polybar/launch.sh
Executable file
13
i3/.config/polybar/launch.sh
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Terminate already running bar instances
|
||||
# If all your bars have ipc enabled, you can use
|
||||
polybar-msg cmd quit
|
||||
# Otherwise you can use the nuclear option:
|
||||
# killall -q polybar
|
||||
|
||||
# Launch barxs
|
||||
echo "---" | tee -a /tmp/polybar-mybar.log
|
||||
polybar mybar 2>&1 | tee -a /tmp/polybar-mybar.log & disown
|
||||
|
||||
echo "Bars launched..."
|
||||
33
i3/.config/polybar/themes/frappe.ini
Normal file
33
i3/.config/polybar/themes/frappe.ini
Normal file
@@ -0,0 +1,33 @@
|
||||
;-------------------------
|
||||
; Catppuccin Frappé Palette
|
||||
; Maintainer: justTOBBI
|
||||
;--------------------------
|
||||
|
||||
[colors]
|
||||
rosewater = #f2d5cf
|
||||
flamingo = #eebebe
|
||||
pink = #f4b8e4
|
||||
mauve = #ca9ee6
|
||||
red = #e78284
|
||||
maroon = #ea999c
|
||||
peach = #ef9f76
|
||||
yellow = #e5c890
|
||||
green = #a6d189
|
||||
teal = #81c8be
|
||||
sky = #99d1db
|
||||
sapphire = #85c1dc
|
||||
blue = #8caaee
|
||||
lavender = #babbf1
|
||||
text = #c6d0f5
|
||||
subtext1 = #b5bfe2
|
||||
subtext0 = #a5adce
|
||||
overlay2 = #949cbb
|
||||
overlay1 = #838ba7
|
||||
overlay0 = #737994
|
||||
surface2 = #626880
|
||||
surface1 = #51576d
|
||||
surface0 = #414559
|
||||
base = #303446
|
||||
mantle = #292c3c
|
||||
crust = #232634
|
||||
transparent = #FF00000
|
||||
33
i3/.config/polybar/themes/latte.ini
Normal file
33
i3/.config/polybar/themes/latte.ini
Normal file
@@ -0,0 +1,33 @@
|
||||
;-------------------------
|
||||
; Catppuccin Latte Palette
|
||||
; Maintainer: justTOBBI
|
||||
;--------------------------
|
||||
|
||||
[colors]
|
||||
rosewater = #dc8a78
|
||||
flamingo = #dd7878
|
||||
pink = #ea76cb
|
||||
mauve = #8839ef
|
||||
red = #d20f39
|
||||
maroon = #e64553
|
||||
peach = #fe640b
|
||||
yellow = #df8e1d
|
||||
green = #40a02b
|
||||
teal = #179299
|
||||
sky = #04a5e5
|
||||
sapphire = #209fb5
|
||||
blue = #1e66f5
|
||||
lavender = #7287fd
|
||||
text = #4c4f69
|
||||
subtext1 = #5c5f77
|
||||
subtext0 = #6c6f85
|
||||
overlay2 = #7c7f93
|
||||
overlay1 = #8c8fa1
|
||||
overlay0 = #9ca0b0
|
||||
surface2 = #acb0be
|
||||
surface1 = #bcc0cc
|
||||
surface0 = #ccd0da
|
||||
base = #eff1f5
|
||||
mantle = #e6e9ef
|
||||
crust = #dce0e8
|
||||
transparent = #FF00000
|
||||
33
i3/.config/polybar/themes/macchiato.ini
Normal file
33
i3/.config/polybar/themes/macchiato.ini
Normal file
@@ -0,0 +1,33 @@
|
||||
;-------------------------
|
||||
; Catppuccin Macchiato Palette
|
||||
; Maintainer: justTOBBI
|
||||
;--------------------------
|
||||
|
||||
[colors]
|
||||
rosewater = #f4dbd6
|
||||
flamingo = #f0c6c6
|
||||
pink = #f5bde6
|
||||
mauve = #c6a0f6
|
||||
red = #ed8796
|
||||
maroon = #ee99a0
|
||||
peach = #f5a97f
|
||||
yellow = #eed49f
|
||||
green = #a6da95
|
||||
teal = #8bd5ca
|
||||
sky = #91d7e3
|
||||
sapphire = #7dc4e4
|
||||
blue = #8aadf4
|
||||
lavender = #b7bdf8
|
||||
text = #cad3f5
|
||||
subtext1 = #b8c0e0
|
||||
subtext0 = #a5adcb
|
||||
overlay2 = #939ab7
|
||||
overlay1 = #8087a2
|
||||
overlay0 = #6e738d
|
||||
surface2 = #5b6078
|
||||
surface1 = #494d64
|
||||
surface0 = #363a4f
|
||||
base = #24273a
|
||||
mantle = #1e2030
|
||||
crust = #181926
|
||||
transparent = #FF00000
|
||||
33
i3/.config/polybar/themes/mocha.ini
Normal file
33
i3/.config/polybar/themes/mocha.ini
Normal file
@@ -0,0 +1,33 @@
|
||||
;-------------------------
|
||||
; Catppuccin Mocha Palette
|
||||
; Maintainer: justTOBBI
|
||||
;--------------------------
|
||||
|
||||
[colors]
|
||||
rosewater = #f5e0dc
|
||||
flamingo = #f2cdcd
|
||||
pink = #f5c2e7
|
||||
mauve = #cba6f7
|
||||
red = #f38ba8
|
||||
maroon = #eba0ac
|
||||
peach = #fab387
|
||||
yellow = #f9e2af
|
||||
green = #a6e3a1
|
||||
teal = #94e2d5
|
||||
sky = #89dceb
|
||||
sapphire = #74c7ec
|
||||
blue = #89b4fa
|
||||
lavender = #b4befe
|
||||
text = #cdd6f4
|
||||
subtext1 = #bac2de
|
||||
subtext0 = #a6adc8
|
||||
overlay2 = #9399b2
|
||||
overlay1 = #7f849c
|
||||
overlay0 = #6c7086
|
||||
surface2 = #585b70
|
||||
surface1 = #45475a
|
||||
surface0 = #313244
|
||||
base = #1e1e2e
|
||||
mantle = #181825
|
||||
crust = #11111b
|
||||
transparent = #FF00000
|
||||
0
i3/.config/xfce4-clipman/clipman.rc
Normal file
0
i3/.config/xfce4-clipman/clipman.rc
Normal file
3
i3/.xinitrc
Executable file
3
i3/.xinitrc
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
exec /usr/bin/i3
|
||||
Reference in New Issue
Block a user