From 358387151d34cc24eddc3b4be18adae3dbc5540a Mon Sep 17 00:00:00 2001 From: Mateja Date: Sat, 29 Aug 2020 21:52:20 +0200 Subject: i3 and polybar --- .config/i3/config | 138 ++++++++++++++++++++++++++++ .config/i3/polybar.sh | 4 + .config/polybar/config | 243 +++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 385 insertions(+) create mode 100644 .config/i3/config create mode 100755 .config/i3/polybar.sh create mode 100644 .config/polybar/config diff --git a/.config/i3/config b/.config/i3/config new file mode 100644 index 0000000..7c002d1 --- /dev/null +++ b/.config/i3/config @@ -0,0 +1,138 @@ +set $mod Mod4 +font pango:monospace 8 + +#START +exec dunst +exec udiskie +exec picom +exec setxkbmap -layout us,rs -variant ,alternatequotes -option grp:alt_shift_toggle caps:swapescape +exec_always ~/.config/i3/polybar.sh +exec_always feh --bg-fill Pictures/Gustav_Bauernfeind-Market_in_Jaffa.jpg + +bindsym $mod+bracketleft exec amixer -q sset Master 5%+ +bindsym $mod+apostrophe exec amixer -q sset Master 5%- +bindsym $mod+p exec amixer -q sset Master toggle + +bindsym $mod+m exec scrot -ze 'mv $f ~/screenshots/' +bindsym $mod+u exec ~/scripts/unmount-usb +#END + +floating_modifier $mod + +bindsym $mod+Return exec termite + +bindsym $mod+Shift+q kill + +bindsym $mod+d exec rofi -show run + +bindsym $mod+h focus left +bindsym $mod+j focus down +bindsym $mod+k focus up +bindsym $mod+l focus right + +bindsym $mod+Left focus left +bindsym $mod+Down focus down +bindsym $mod+Up focus up +bindsym $mod+Right focus right + +bindsym $mod+Shift+h move left +bindsym $mod+Shift+j move down +bindsym $mod+Shift+k move up +bindsym $mod+Shift+l move right + +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+n 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+e layout toggle split + +# toggle tiling / floating +bindsym $mod+Shift+space floating toggle + +# change focus between tiling / floating windows +bindsym $mod+space focus mode_toggle + +# focus the parent container +bindsym $mod+a focus parent + +# focus the child container +#bindsym $mod+d focus child + +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" + +bindsym $mod+1 workspace number $ws1 +bindsym $mod+2 workspace number $ws2 +bindsym $mod+3 workspace number $ws3 +bindsym $mod+4 workspace number $ws4 +bindsym $mod+5 workspace number $ws5 +bindsym $mod+6 workspace number $ws6 +bindsym $mod+7 workspace number $ws7 +bindsym $mod+8 workspace number $ws8 +bindsym $mod+9 workspace number $ws9 +bindsym $mod+0 workspace number $ws10 + +bindsym $mod+Shift+1 move container to workspace number $ws1 +bindsym $mod+Shift+2 move container to workspace number $ws2 +bindsym $mod+Shift+3 move container to workspace number $ws3 +bindsym $mod+Shift+4 move container to workspace number $ws4 +bindsym $mod+Shift+5 move container to workspace number $ws5 +bindsym $mod+Shift+6 move container to workspace number $ws6 +bindsym $mod+Shift+7 move container to workspace number $ws7 +bindsym $mod+Shift+8 move container to workspace number $ws8 +bindsym $mod+Shift+9 move container to workspace number $ws9 +bindsym $mod+Shift+0 move container to workspace number $ws10 + +# 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'" + +mode "resize" { + bindsym h resize shrink width 10 px or 10 ppt + bindsym j resize grow height 10 px or 10 ppt + bindsym k resize shrink height 10 px or 10 ppt + bindsym l resize grow width 10 px or 10 ppt + + 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 Return mode "default" + bindsym Escape mode "default" + bindsym $mod+r mode "default" +} + +bindsym $mod+r mode "resize" + +# You can also use any non-zero value if you'd like to have a border +for_window [class=".*"] border pixel 0 + +gaps inner 6 +gaps outer 6 diff --git a/.config/i3/polybar.sh b/.config/i3/polybar.sh new file mode 100755 index 0000000..e168151 --- /dev/null +++ b/.config/i3/polybar.sh @@ -0,0 +1,4 @@ +#!/bin/sh +killall -q polybar +while pgrep -x polybar >/dev/null; do sleep 1; done +polybar my_bar & diff --git a/.config/polybar/config b/.config/polybar/config new file mode 100644 index 0000000..f0fe8ea --- /dev/null +++ b/.config/polybar/config @@ -0,0 +1,243 @@ +[colors] +background = #000 +background-alt = #444 + +foreground = #dfdfdf +foreground-alt = #555 + +primary = #ffb52a +secondary = #e60053 +alert = #bd2c40 + +my_brown = #6e4525 +my_blue = #53726d + +[bar/my_bar] +width = 100% +height = 26 +fixed-center = false + +;background = ${colors.background} +;background = #a000 +background = ${colors.my_brown} +foreground = ${colors.foreground} + +line-size = 0 +;line-color = #f00 + +border-size = 0 +border-color = #00000000 + +;padding-left = 0 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +padding-right = 1 + +module-margin-left = 1 +module-margin-right = 1 +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +#module-margin = 4 + +font-0 = fixed:pixelsize=9;2 +font-1 = fixed:pixelsize=9;2 +font-2 = fixed:pixelsize=9;2 + +#font-3 = "Font Awesome 5 Brands Regular:style=Regular:size=10;3" +#font-4 = "Font Awesome 5 Free Solid:style=Solid:size=10;3" +#font-5 = "Font Awesome 5 Free Regular:style=Regular:size=10;3" + +font-3 = "Symbols Nerd Font:size=12;3" + +modules-left = i3 +;modules-center = mpd +modules-right = xkeyboard pulseaudio cpu temperature memory date + +tray-position = right +tray-padding = 0 +;tray-background = #0063ff + +;wm-restack = bspwm +;wm-restack = i3 + +;override-redirect = true + +;scroll-up = bspwm-desknext +;scroll-down = bspwm-deskprev + +;scroll-up = i3wm-wsnext +;scroll-down = i3wm-wsprev + +cursor-click = pointer +cursor-scroll = ns-resize + +bottom = true + +[module/xkeyboard] +type = internal/xkeyboard +blacklist-0 = num lock + +format = + +label-layout = "  %layout% " +label-layout-background = ${colors.my_brown} +;label-layout-underline = ${colors.secondary} + +label-indicator-background = #aa2222 + +label-indicator-padding = 2 +label-indicator-margin = 1 +;label-indicator-background = ${colors.secondary} +;label-indicator-underline = ${colors.secondary} + +[module/i3] +type = internal/i3 +format = +index-sort = true +wrapping-scroll = false + +; Only show workspaces on the same output as the bar +;pin-workspaces = true + + +label-mode-padding = 2 +label-mode-foreground = #000 +label-mode-background = ${colors.primary} + +; focused = Active workspace on focused monitor +label-focused = %index% +#label-focused-background = ${colors.background-alt} +label-focused-background = ${colors.my_blue} +label-focused-underline= ${colors.primary} +label-focused-padding = 2 + +; unfocused = Inactive workspace on any monitor +label-unfocused = %index% +label-unfocused-background = ${colors.my_brown} +label-unfocused-padding = 2 + +; visible = Active workspace on unfocused monitor +label-visible = %index% +label-visible-background = ${self.label-focused-background} +label-visible-underline = ${self.label-focused-underline} +label-visible-padding = ${self.label-focused-padding} + +; urgent = Workspace with urgency hint set +label-urgent = %index% +label-urgent-background = ${colors.alert} +label-urgent-padding = 2 + +[module/date] +type = internal/date +interval = 5 + +;date = %A %d.%m.%Y. +date = %A %d %b +time = %I:%M %p + +label = "  %date%  %time% " +label-background = ${colors.my_brown} + +[module/pulseaudio] +type = internal/pulseaudio + +format-volume = +#format-volume-prefix = "VOL: " +format-volume-prefix = " 墳 " +#format-volume-prefix-foreground = ${colors.foreground} +format-volume-background = ${colors.my_brown} +label-volume = "%percentage%% " +label-volume-foreground = ${root.foreground} + +;format-muted = " 婢 " +format-muted = " 婢 " +format-muted-background = ${colors.my_brown} +format-muted-foreground = ${root.foreground} + +;[module/alsa] +;type = internal/alsa +; +;format-volume = +;label-volume = VOL +;label-volume-foreground = ${root.foreground} +; +;format-muted-prefix = " " +;format-muted-foreground = ${colors.foreground-alt} +;label-muted = sound muted +; +;bar-volume-width = 10 +;bar-volume-foreground-0 = #55aa55 +;bar-volume-foreground-1 = #55aa55 +;bar-volume-foreground-2 = #55aa55 +;bar-volume-foreground-3 = #55aa55 +;bar-volume-foreground-4 = #55aa55 +;bar-volume-foreground-5 = #f5a70a +;bar-volume-foreground-6 = #ff5555 +;bar-volume-gradient = false +;bar-volume-indicator = | +;bar-volume-indicator-font = 2 +;bar-volume-fill = ─ +;bar-volume-fill-font = 2 +;bar-volume-empty = ─ +;bar-volume-empty-font = 2 +;bar-volum[module/cpu] + +[module/memory] +type = internal/memory +interval = 2 +;format-prefix = "RAM: " +format-prefix = "  " +format-background = ${colors.my_brown} +;format-prefix-foreground = ${colors.foreground-alt} +;format-underline = #4bffdc +label = "%mb_used% " +e-empty-foreground = ${colors.foreground-alt} + + +[module/cpu] +type = internal/cpu +interval = 2 +;format-prefix = "CPU: " +format-prefix = " " +;format-prefix-foreground = ${colors.foreground-alt} +format-background = ${colors.my_brown} +;format-underline = #f90000 +label = "%percentage:2%% " + +[module/temperature] +type = internal/temperature +thermal-zone = 0 +warn-temperature = 60 + +format = "