Šta je novo?

i3wm (improved tiling window manager)

sammy

Slavan
Učlanjen(a)
02.11.2007
Poruke
2,482
Poena
485
https://i3wm.org/

Probaću ovde u ovoj temi da objasnim kako konfigurisati i3wm da izgleda kao kod mene.
Umesto i3bar koji dolazi uz i3 koristim polybar (https://github.com/jaagr/polybar)

Zakačiću konfig fajlove za sada samo, pa ako ima nekih pitanja mogu da odgvorim na njih kasnije.

Kod:
.config/i3/config
Kod:
# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout some time, delete
# this file and re-run i3-config-wizard(1).
#

# i3 config file (v4)
#
# Please see http://i3wm.org/docs/userguide.html for a complete reference!

set $mod Mod4
set $base00 #101218
set $base01 #1f222d
#set $base01 #861B1B
set $base02 #252936
set $base03 #72C9CF
set $base04 #C0C5CE
set $base05 #d1d4e0
set $base06 #C9CCDB
set $base07 #FCAF3E
set $base08 #ee829f
set $base09 #f99170
set $base0A #ffefcc
set $base0B #a5ffe1
set $base0C #97e0ff
set $base0D #97bbf7
set $base0E #c0b7f9
set $base0F #fcc09e

mode "moveit" {
    bindsym Up move up 20px
    bindsym Left move left 20px
    bindsym Down move down 20px
    bindsym Right move right 20px
    bindsym Mod4+m mode "default"
}
bindsym Mod4+m focus floating; mode "moveit"

gaps inner 5
gaps outer 3
smart_gaps on
#smart_borders on

# Font for window titles. Will also be used by the bar unless a different font
# is used in the bar {} block below.
font pango:Signika Bold 11
#font pango:System San Francisco Display Bold 11

# 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

# 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

# force floating for all new windows
#for_window [class="[.]*"] floating enable

# browser pop-ups
for_window [window_role="pop-up"] floating enable

# Floating Window Apps
for_window[class="Notes"] floating enable
for_window[class="mpv"] floating enable
for_window[class="VirtualBox"] floating enable
for_window[class="Keepassx"] floating enable
for_window[class="Lazarus"] floating enable
for_window[class="Galculator"] floating enable
for_window[class="BizarroTW"] floating enable

# Fullscreen apps
#for_window[class="mpv"] fullscreen enable

# start a terminal
#bindsym $mod+Return exec i3-sensible-terminal
bindsym $mod+Return exec urxvtc

####### KILL WINDOWS #########################
# kill focused window
bindsym $mod+Shift+q kill

#bindsym F8 kill - on titlebar only
bindsym --release button2 kill

#bindsym F8 kill - anywhere on window
#bindsym --whole-window button2 kill

##############################################

# start dmenu (a program launcher)
#bindsym $mod+d exec dmenu_run
#bindsym $mod+d exec rofi -show run -lines 5 -eh 2 -width 100 -padding 500 -opacity "80" -bw 0 -bc "$base01" -bg "$base02" -fg "$base07" -hlbg "$base05" -columns 2 -font "System San Francisco Display 18" -hlfg "#9575cd"
#bindsym $mod+d exec rofi -show run
bindsym F2 exec --no-startup-id i3-dmenu-desktop --dmenu='rofi -font "Iosevka heavy 11" -dmenu'
# 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

# window switcher
#bindsym F1 exec rofi -font "Signika Semi-Bold 11" -i -show window -window-format "{t}"
bindsym F1 exec rofi -font "Iosevka heavy 11" -i -show window -window-format "{t}"

# change focus
bindsym $mod+j focus left
bindsym $mod+k focus down
bindsym $mod+l focus up
bindsym $mod+semicolon 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+j move left
bindsym $mod+Shift+k move down
bindsym $mod+Shift+l move up
bindsym $mod+Shift+semicolon 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+h 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

# Next / Previous workspace
bindcode Mod1+23 workspace next
bindcode Mod1+Shift+23 workspace prev

set $workspace1 "1:  "
set $workspace2 "2:  "
set $workspace3 "3: "
set $workspace4 "4: "
set $workspace5 "5: "
set $workspace6 "6: "
set $workspace7 "7: "
set $workspace8 "8: "
set $workspace9 "9: "
set $workspace10 "10:  "

# switch to workspace
bindsym $mod+1 workspace $workspace1
bindsym $mod+2 workspace $workspace2
bindsym $mod+3 workspace $workspace3
bindsym $mod+4 workspace $workspace4
bindsym $mod+5 workspace $workspace5
bindsym $mod+6 workspace $workspace6
bindsym $mod+7 workspace $workspace7
bindsym $mod+8 workspace $workspace8
bindsym $mod+9 workspace $workspace9
bindsym $mod+0 workspace $workspace10

# move focused container to workspace
bindsym $mod+Shift+1 move container to workspace $workspace1
bindsym $mod+Shift+2 move container to workspace $workspace2
bindsym $mod+Shift+3 move container to workspace $workspace3
bindsym $mod+Shift+4 move container to workspace $workspace4
bindsym $mod+Shift+5 move container to workspace $workspace5
bindsym $mod+Shift+6 move container to workspace $workspace6
bindsym $mod+Shift+7 move container to workspace $workspace7
bindsym $mod+Shift+8 move container to workspace $workspace8
bindsym $mod+Shift+9 move container to workspace $workspace9
bindsym $mod+Shift+0 move container to workspace $workspace10

#assign [class="Ranger"] $workspace2
assign [class="Firefox"] $workspace3
assign [class="Lazarus"] $workspace4
assign [class="Codeblocks"] $workspace4
assign [class="Steam"] $workspace5
assign [class="Claws-mail"] $workspace6
assign [class="VirtualBox"] $workspace7
assign [class="(?i)kodi"] $workspace8

# 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'"
# reboot
bindsym $mod+Shift+BackSpace exec "dbus-send --system --print-reply --dest='org.freedesktop.ConsoleKit' /org/freedesktop/ConsoleKit/Manager org.freedesktop.ConsoleKit.Manager.Restart"

# 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 j resize shrink width 10 px or 10 ppt
        bindsym k resize grow height 10 px or 10 ppt
        bindsym l resize shrink height 10 px or 10 ppt
        bindsym semicolon 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
        bindsym Return mode "default"
        bindsym Escape mode "default"
}

bindsym $mod+r mode "resize"

#hide_edge_borders both
#border normal 0
new_window normal 0

# Window Colours
#                         border  background text    indicator
#  client.focused          #861B1B $base01    $base07 $base0F
  client.focused          #861B1B $base07    $base01 $base0F
  client.focused_inactive $base02 $base02    $base03 $base0F
  client.unfocused        $base02 $base02    $base03 $base0F
  client.urgent 	  $base02 $base08    $base00 $base0F

# Start i3bar to display a workspace bar (plus the system information i3status
# finds out, if available)
#bar {
#        status_command i3blocks -c ~/.config/i3/i3blocks.conf
#	font pango: FontAwesome Bold 11
#	height 18
#	position top
#}

# Pulse Audio controls
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume 0 +5% #increase sound volume
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume 0 -5% #decrease sound volume
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute 0 toggle # mute sound

# Media player controls
#bindsym XF86AudioPlay exec playerctl play
#bindsym XF86AudioPause exec playerctl pause
#bindsym XF86AudioNext exec playerctl next
#bindsym XF86AudioPrev exec playerctl previous

exec urxvtd --quiet --opendisplay --fork
#exec --no-startup-id urxvtd -q -o -f
#exec setxkbmap rs latin -model pc105
exec redshift
exec xset -dpms s off
exec compton
exec_always feh --bg-center Pictures/wallhaven-501949.jpg
#exec xdg-user-dirs-gtk-update
#exec start-pulseaudio-x11
#exec_always compton -f
exec_always --no-startup-id $HOME/.config/polybar/launch.sh
#exec i3-sensible-terminal

Kod:
.config/polybar/launch.sh
Kod:
#!/usr/bin/env sh

# Terminate already running bar instances
killall -q polybar

# Wait until the processes have been shut down
while pgrep -x polybar >/dev/null; do sleep 1; done

# Launch bar1 and bar2
#polybar bar1 &
#polybar bar
#polybar bottom
polybar up &
polybar bottom &

echo "Bars launched..."
 

Prilozi

  • Screenshot at 2017-06-12 15:58:35.jpg
    Screenshot at 2017-06-12 15:58:35.jpg
    245.4 KB · Pregleda: 108
Moram da podelim u nekoliko postova ovo jer ne može više od 20000 linija u post da ide.

Kod:
.config/polybar/config

Kod:
;:set syn=dosini

[global/wm]
#margin-top = 8
#margin-bottom = 8
#margin-left = 8
#margin-right = 8


[colors]
;orange = #FF6200
;orange = #d65d0e
darkgray = ${xrdb:color8}
orange = ${xrdb:color9}
white = #ebdbb2
gray = #585858
black = #090909
red = #c795ae
blue = #95aec7
yellow = #c7ae95
yellow2 = #D7FF00
green = #aec795
#background = #1f222d
background = #262626
background-alt = #4e4e4e
foreground = #dfdfdf
#foreground = ${xrdb:foreground}
foreground-alt = #4e4e4e
primary = #1f222d
secondary = #FF6200
alert = #fb4934

[bar/up]
;monitor = ${env:MONITOR:HDMI-1}
width = 100%
height = 21
;offset-x = 1%
;offset-y = 1%
fixed-center = true

locale = en_US.UTF-8

enable-ipc = true

padding-left = 0
padding-right = 0

module-margin-left = 1
module-margin-right = 1

;modules-center = date
;modules-right =
;modules-left = i3
modules-left = hdd-temps separator cputemp-cpufan
modules-center = weather separator date separator time separator volume separator redshift separator powermenu
;modules-right =

background = ${colors.background}
foreground = ${colors.foreground}

underline-size = 2
underline-color = ${colors.white}

tray-detached = true
tray-position = right
tray-offset-x = 0
tray-offset-y = 0
;tray-maxsize = 16
tray-padding = 4
tray-transparent = false
tray-scale = 1.0

;font-0 = "Signika:size=11:weight=bold;2"
;font-0 = "monospace:size=11:weight=bold;2"
font-0 = Iosevka:size=11:heavy:fontformat=truetype;1
font-1 = "FontAwesome:size=11:weight=bold;2"

[bar/bottom]
;monitor = ${env:MONITOR:HDMI-1}
width = 100%
height = 21
;offset-x = 1%
;offset-y = 1%
fixed-center = true
bottom = true

locale = en_US.UTF-8

enable-ipc = true

padding-left = 0
padding-right = 0

module-margin-left = 1
module-margin-right = 1

;modules-center = Mycpu separator cputemp-cpufan separator MyMemory separator weather separator redshift
;modules-left = hdd-temps separator wired-network
;modules-right = volume
modules-left = i3
modules-center = Mycpu separator MyMemory separator wired-network
modules-right = cmus

background = ${colors.background}
foreground = ${colors.foreground}

underline-size = 2
underline-color = ${colors.white}

;font-0 = "Signika:size=11:weight=bold;2"
;font-0 = "monospace:size=11:weight=bold;2"
font-0 = Iosevka:size=11:heavy:fontformat=truetype;1
font-1 = "FontAwesome:size=11:weight=bold;2"




[module/redshift]
type = custom/script
interval = 60
exec = ~/.config/polybar/redshift.sh

[module/temperature]
;inherit = module/theme
type = internal/temperature
thermal-zone = 0
warn-temperature = 65

format = <label>
format-underline = #d33636
format-warn = <label-warn>
format-warn-underline = ${self.format-underline}

label = %temperature%
label-warn = %temperature%
format-warn-foreground = ${colors.foreground}
format-warn-background = ${colors.alert}
format-warn-padding = ${self.format-padding}

ramp-0 = 
ramp-1 = 
ramp-2 = 
ramp-foreground = ${colors.foreground-alt}

[module/wired-network]
type = internal/network
interface = enp2s0
interval = 3.0
label-connected = %{F#8fa1b3}  %{F#fffdd0}%downspeed:8% %{F#8fa1b3}   %{F#fffdd0}%upspeed:8%
;label-connected-foreground = #54dde9

[module/i3]
type = internal/i3
format = <label-state> <label-mode>
index-sort = false
wrapping-scroll = false

#label-focused = %icon%
;label-focused-font = 1
label-focused-background = #FCAF3E
label-focused-foreground = ${colors.primary}
;label-focused-underline= ${colors.primary}
label-focused-underline= ${colors.white}
label-visible-underline = ${colors.foreground}
label-focused-padding-left = 0
label-focused-padding-right = 1

label-unfocused-padding-right = 1
label-unfocused-padding-left = 0

label-occupied = %icon%
label-occupied-foreground = ${colors.darkgray}
label-occupied-padding = 2

label-urgent = %icon%!
label-urgent-background = ${colors.alert}
label-urgent-padding = 2

label-empty = %icon%
label-empty-foreground = ${colors.foreground-alt}
label-empty-padding = 2

[module/filesystem]
type = internal/fs
interval = 25

mount-0 = /
format-mounted-prefix = " "
format-mounted-foreground = #928374
label-mounted = %percentage_used%%
label-mounted-foreground = ${root.foreground}
label-unmounted = %mountpoint% not mounted
label-unmounted-foreground = #928374
format-mounted-padding = 1
format-unmounted-padding = 1

[module/cmus]
type = custom/script
interval = 5
format-foreground = #ff960a
;format = <label>
;format-prefix = " "
;format-prefix-foreground = ${colors.foreground-alt}
exec = ~/.config/polybar/cmus.sh
click-left = cmus-remote -p
click-right = cmus-remote -s
scroll-up = exec ~/.config/polybar/cmus-volup.sh
scroll-down = exec ~/.config/polybar/cmus-voldown.sh

[module/weather]
type = custom/script
interval = 300
format-foreground = #ff960a
;format = <label>
;format-prefix = " "
;format-prefix-foreground = ${colors.foreground-alt}
exec = ~/.config/polybar/weather.sh

[module/cputemp]
type = custom/script
;exec = echo `sensors -A | grep -oP '^CPU Te.+?  \+\K\d+' | awk '{k+=$1}END{print k/NR}'`°
exec = echo `sensors -A | grep CPU\ Temperature | cut -c 22-23`°
interval = 10
format-underline = #f04242
format-foreground = #fffdd0
format-prefix = " "
format-prefix-foreground = #f04242
;format-prefix-background = #AC3508

[module/cpuFANrpm]
type = custom/script
exec = echo `sensors -A | grep CPU\ FAN\ Speed | cut -c 20-23`°
interval = 10
format-underline = #f04242
format-foreground = #fffdd0
format-prefix = "RPM:"
format-prefix-foreground = #f04242
;format-prefix-background = #AC3508

[module/cputemp-cpufan]
type = custom/script
interval=10
exec = ~/.config/polybar/cputemp-cpufan.sh
format-underline = #f04242
format-foreground = #fffdd0
format-prefix = " "
format-prefix-foreground = #f04242

[module/date]
type = internal/date
interval = 60
;time = "%A %d %b - %H:%M"
date = "%A %d %b"
;time-alt = "%a - %d.%m.%Y - %I:%M %p"
format-prefix = " "
format-prefix-foreground = #8FA1B3
format-foreground = daff22
;format-underline = ${colors.foreground}
label = %date%
label-foreground = #FFE4E1
;format-padding = 1

[module/time]
type = internal/date
;time-alt =   %A, %d %B %Y %H:%M
time = "%H:%M"
interval = 5
format-prefix = " "
format-prefix-foreground = #8FA1B3
format-underline = #8FA1B3
;format-background = ${colors.black}
format-foreground = #daff22
;format-padding = 1
;label-separator = |
label = %time%
label-foreground = #daff22

[module/volume]
type = internal/volume

format-volume = <label-volume> <bar-volume>
label-volume = 
label-volume-foreground = ${root.foreground}
label-padding = 2

format-muted-prefix = " "
format-muted-foreground = ${colors.white}
label-muted = sound muted
format-padding = 2

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-volume-empty-foreground = ${colors.foreground-alt}

format-muted-padding = 1
format-volume-padding = 1

[module/cpu]
type = internal/cpu
interval = 3
format-prefix = " "
format-prefix-foreground = #FF0000
;format-underline = #f90000
label = %percentage:2%%
label-foreground = #FF0000
format-padding = 1

[module/Mycpu]
type = custom/script
interval = 3
format-prefix = " "
format-prefix-foreground = #ff0000
format-underline = #ff0000
format-foreground = #fffdd0
exec = ~/.config/polybar/cpu.sh
label = %output:3%
click-right = ~/.config/polybar/cpueaters.sh

[module/hdd-temps]
type = custom/script
interval=1800
exec = ~/.config/polybar/hdd-temps.sh
format-foreground = ${colors.foreground}

[module/MyMemory]
type = custom/script
interval = 3
format-prefix = " "
format-prefix-foreground = #32af9f
format-underline = #32af9f
format-foreground = #fffdd0
exec = ~/.config/polybar/memory.sh
click-right = ~/.config/polybar/rameaters.sh

[module/memory]
type = internal/memory
interval = 3
format-prefix = " "
format-prefix-foreground = #32af9f
;format-underline = #4bffdc
label = %percentage_used%%
label-foreground = #fffdd0
format-padding = 1

[module/separator]
type = custom/text
content = |
content-foreground = #4e4e4e


[module/powermenu]
type = custom/menu

format-spacing = 1
label-open = 
label-open-foreground = ${colors.secondary}
;label-close = cancel
label-close =  cancel
label-close-foreground = ${colors.secondary}
label-separator = |
label-separator-foreground = ${colors.foreground-alt}
format-padding = 1

menu-0-0 = log out
menu-0-0-exec = menu-open-1
menu-0-1 = reboot
menu-0-1-exec = menu-open-2

menu-1-0 = log out
menu-1-0-exec = i3-msg exit
menu-1-1 = cancel
menu-1-1-exec = menu-open-0

menu-2-0 = reboot
menu-2-0-exec = ~/.config/polybar/reboot.sh
menu-2-1 = cancel
menu-2-2-exec = menu-open-0


[settings]
screenchange-reload = true
;compositing-background = xor
;compositing-background = screen
;compositing-foreground = source
;compositing-border = over

; vim:ft=dosini
 
Ostali su još moduli za polybar, neke sam ćapio od negde, neke sam sam pravio.
Obzirom da trenutno nemam mnogo vremena a rešio sam da skinem ovo s' ledja, za sada ću da okačim samo šta treba a posle ću da se potrudim da ih objasnim.
Svaki od ovih fajlova se nalazi u .config/polybar

krastavac krenuo sam da kucam svaki od modula ali nije to išlo kako treba pa sam zapakovao u zip
 

Prilozi

  • modules.zip
    4.2 KB · Pregleda: 26
Neki moduli naravno nisu potrebni, kao cmus*.sh recimo, to je da u donjem polybaru ako se koristi cmus prikaže šta se trenutno sluša ako se koristi cmus, takodje da se na scroll mišem smanjuje i povećava volume cmus palyera.
cpueaters.sh je da kada se klikne na cpu zauzeće desnim klikom miša prikaže notification sa 16 procesa koji najviše jedu cpu, isto i sa memorijom, rameaters.sh (to sam uslikao u prvom postu se vidi kako to izgleda)
Vidi se po nazivima šta koji radi.
Što se tiče polybar konfiga, ja koristim dva bara, jedan je sasvim dovoljan, medjutim kako sam dodavao module postajalo je tesno sve da stane na jedan, [bar/up] je konfig za gornji
Kod:
modules-left = hdd-temps separator cputemp-cpufan
modules-center = weather separator date separator time separator volume separator redshift separator powermenu

znači tu stavljamo koje module hoćemo levo desno i u centar, ovde desno nedostaje za gornji jer je tray desno.
donji je ovakav:
Kod:
modules-left = i3
modules-center = Mycpu separator MyMemory separator wired-network
modules-right = cmus

prilično jednostavno zar ne ? :)

Ovo za fontove ili boje to je stvarno individualno, ne znam šta bih tu dodao.
Tek skoro sam prešao na polybar tako da učim i sam još uvek šta i kako, zato svuda ima i dosta komentiranih linija, ali to je to u principu to, radi sve odlično.

Što se i3configa tiče, tu je bitno napomenuti možda ovo na kraju sa exec i exec_always, sa kojima se pokreću programi aut9omatski prilikom podizanja i3, exec_always se razlikuje od exec po tome što kada se recimo restartuje i3, da ponovo startuje to što se navede da se startuje, kao recimo što imam tu feh da setuje wallpaper, jer kada se restartuje i3 onda se promeni wallpaper.

bindsym --release button2 kill
ovo zatvara prozor srednjim klikom miša na titlebar, meni prilično zgodno.

for_window[class="mpv"] floating enable
ovo recimo startuje mpv u floating modu, tj. ne startuje se maximized kao što bi bio slučaj da nema te linije, što je inače podrazumevano, kada je window u floating modu onda se i može pomerati mišem ili tastaturom.

Ne znam šta bih tu još dodao, verovatno nešto mašim, ako neko ima neka pitanja neka slobodno pita.
 
Opa! sammy druze, ipak si se odlucio da okacis vodic :) Lepo, videcu kad budem imao vremena malo da procackam config fajlove :)
 
Tek sad sam zapravo i pročitao šta sam sve napisao, vidim nekoliko slovnih grešaka, žurio sam ali nema veze :)
Moglo je to bolje da se odradi, više sam se rvao sa forumom da postujem sve to, attach može samo 4 fajla, pa limit u linijama itd.
Elem, videću sad da malo pročešljam šta sve tu još može da se kaže, siguran sam da ima još toga.
Sad mi pade na pamet, ne znam kakva je situacija sa polybar na drugim distroima (dali ima paket i slično) ja sam ga kompajlirao.
To je možda jedino šteta, što ne pominjem i3bar koji je default bar, polybar mi je jednostavno dosta bolji mada ništa ne fali ni i3bar-u.
Možda ne bi bilo zgoreg da zakačim kada je već tema i3wm i tri odlična youtube videa koja se detaljno bave instalacijom i konfigurisanjem i3wm-a, meni su pomogla poprilično.





 
Poslednja izmena:
Neki dobar pregledac slika za ovo cudo? Svi ovi mejnstrim imaju ogromne GUI-e i ne uklapaju mi se lijepo u minimalisticko okruzenje.
 
Meni feh radi fino, nemam potrebe za boljim.
 
Jbt ne mogu da verujem da mi to nije palo na pamet ahhaha, auuuu , svaka čast za ovo hahahah :)
 
@sammy, sta koristis da saltas layout tastature tipa kombinacija SR/US?

setxkbmap?

Mogu to sam sad da isprobavam, ali da vidim prvo da nemas neku gotovu implementaciju.
 
Ne šaltam, uvek je SR, u i3config možeš da staviš :
Kod:
exec setxkbmap rs latin -model pc105

to sam prvo koristio i to radi bez problema, sada koristim fajl /etc/X11/xorg.conf.d/00-keyboard.conf, sadržaj tog fajla :
Kod:
Section "InputClass"
        Identifier "system-keyboard"
        MatchIsKeyboard "on"
        Option "XkbLayout" "rs"
        Option "XkbModel" "pc105"
        Option "XkbVariant" "latin"
        Option "XkbOptions" "grp:alt_shift_toggle"
EndSection

Ako ti treba šaltanje i US ne bih znao ovako iz glave da ti kažem kako to da izvedeš.
 
Aha, aha.

Pa dobro uzecu ovo tvoje i probati samo da integrisem da mi ispisuje dolje na traci koji je layout trenutno i to je to. Za skriptu mislim da ce mi biti lakse saltati sa onim gore, mada vidjecu jos. Nervira me ovo, stalno mi je US i pisem ovako osisano mjesec dana nikako da se nakanim da to sredim kako valja.
 
Lol, prvi put da nisam pokusao da trazim na arch wiki. :D

Pa kad sam sebi u sivu masu uklesao ovo kucanje zagrada i specijalnih karaktera na US layoutu i kad god promijenim ne znam gdje se nalazim. Da stvar bude gora svaki drugi program koji koristim razlicit mi layout treba. Na XFCE ima ono da se za svaki program stavi zeljeni layout pa tipa na Firefoxu mi bude SR Latin, u Libre-u SR Cyrillic i tipa u emulatoru terminala US.

KDE sam batalio u potpunosti zbog ovoga jer mi po defaultu sam vraca na srpsku tastaturu ili sta vec radi, pa kad god namjestim US Layout on nesto pobrlja i ne rade mi [ ; : ] i slicno.
 
Vidim, ima dosta materijala.

Dok se ne pozabavim time ovo ispod zavrsava poslic.

Kod:
setxkbmap -model pc104 -layout us,rs -variant ,latin -option grp:alt_shift_toggle
 
Imam ga instaliranog, ali nisam ga još fino podesio da ga postavim, vjerovatno ću sutra to odraditi.
 
U konfigu kad stavim exec_always + komandu tek sam sad primijetio da se stari proces ne gasi nego se samo doda još jedan novi. Tako da ako resetujem 4 puta i3, imaću 5 puta pokrenut "feh" proces ili 5 polybara jedan ispod drugog. Kako da ih pokrenem, a da se prethodna instanca ubije? Mrsko mi je ručno ubijati svaki posebno.
 
Hmm, kod mene nije tako, za exec_always imam feh i polybar, feh ne ostaje u memoriji btw, on samo setuje wallpaper i nema ga više, polybar imam 2 procesa jer imam 2 bara, ali nakon restarta ($mod+shift+r) i dalje samo 2, feha nema.
 
Da, isto $mod + shift + r, restartujem 50 puta dok nešto mijenjam pa mi se u memoriji napravi kuršlus.
 
Nešto drugo te zeza, feh kao što rekoh ni ne treba da ti je u memoriji, osim ako ga nemaš otvorenog zbog nekog drugog razloga (recimo gledaš neke slike), ako polybar startuješ sa launch.sh (ima ga u prvom postu ovde) a imaš ga i ovde : https://github.com/jaagr/polybar/wiki , skripta prvo što uradi je da ubija prethodne polybar procese, tako da nisam siguran što te zeza, nemam ideju zapravo nikakvu, kapiram te ali ne znam šta da ti kažem.
 
Mhm, biće da sam pogrešno pokretao polybar, a što se feha tiče to ću još pogledati. :D
 
Nazad
Vrh Dno