Compare commits

...

5 Commits

Author SHA1 Message Date
Kacper Donat
1ad1a2645f ideavim: Add support for :w 2024-02-04 16:45:23 +01:00
Kacper Donat
c8d910ad6b git: Allow .local gitconfig 2024-02-04 16:45:23 +01:00
Kacper Donat
415bb26c8f xorg: Set dpi to more standard one - 96 2024-02-04 16:45:23 +01:00
Kacper Donat
2a22884232 zsh: Add powerlevel10k 2024-02-04 16:45:23 +01:00
Kacper Donat
92c1d9283c awesome: Add more spacing 2024-02-04 16:43:35 +01:00
43 changed files with 1924 additions and 93 deletions

View File

@ -10,7 +10,7 @@ URxvt.internalBorder: 6
URxvt.fading: 40
URxvt.fadeColor: [50]#000000
Xft.dpi: 102
Xft.dpi: 96
Xft.antialias: true
Xft.rgba: none
Xft.hinting: hintfull

View File

@ -1,12 +1,9 @@
[user]
name = Kacper Donat
name = Kacper Donat
email = kadet1090@gmail.com
[alias]
st = status
ci = commit
co = checkout
br = branch
unstage = reset HEAD --
last = log -1 HEAD
@ -15,16 +12,25 @@
ktokurwa = blame
[push]
default = current
default = current
autoSetupRemote = true
[merge "ours"]
driver = true
[core]
excludesfile = ~/.gitignore
excludesfile = ~/.gitignore
autocrlf = input
commentchar = ";"
[mergetool "nvimdiff"]
cmd = nvim -d $LOCAL $REMOTE $MERGED -c '$wincmd w' -c 'wincmd J'
cmd = nvim -d $LOCAL $REMOTE $MERGED -c '$wincmd w' -c 'wincmd J'
[difftool]
tool = nvimdiff
tool = nvimdiff
[rebase]
autosquash = true
[include]
path = ~/.gitconfig.local

View File

@ -52,4 +52,7 @@ nnoremap m[ :action MethodUp<cr>
nnoremap m] :action MethodDown<cr>
nnoremap c[ :action VcsShowPrevChangeMarker<cr>
nnoremap c] :action VcsShowNextChangeMarker<cr>
set ideajoin
set ideajoin
" autocations
nnoremap :w :action com.dubreuia.core.action.ShortcutAction<CR>:action SaveDocument

1705
.p10k.zsh Normal file

File diff suppressed because it is too large Load Diff

23
.zshrc
View File

@ -1,3 +1,10 @@
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
@ -7,7 +14,7 @@ export ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="lambda-gitster"
ZSH_THEME="powerlevel10k/powerlevel10k"
# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"
@ -65,14 +72,16 @@ unsetopt share_history
# export LANG=en_US.UTF-8
# Preferred editor for local and remote sessions
export EDITOR='vim'
export PATH=$PATH:$HOME/bin/:$HOME/.local/bin:$HOME/.dotnet/tools
export EDITOR='nvim'
export PATH=$PATH:$HOME/bin/:$HOME/.local/bin:$HOME/.dotnet/tools:./node_modules/.bin/:./vendor/bin/:$HOME/go/bin
export ANSIBLE_VAULT_PASSWORD_FILE=~/.ansible/vault_pass
# Compilation flags
# export ARCHFLAGS="-arch x86_64"
# ssh
# export SSH_KEY_PATH="~/.ssh/rsa_id"
# export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
# Set personal aliases, overriding those provided by oh-my-zsh libs,
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
@ -83,8 +92,12 @@ export PATH=$PATH:$HOME/bin/:$HOME/.local/bin:$HOME/.dotnet/tools
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
alias vim=nvim
alias calc='python -ic "from __future__ import division; from math import *"'
# too much vim...
:q () { exit; }
mkfile() { mkdir -p "$(dirname "$1")" && touch "$1"; }
function ranger-cd {
tempfile="$(mktemp -t tmp.XXXXXX)"
@ -115,3 +128,7 @@ ZSH_HIGHLIGHT_STYLES[double-quoted-argument-unclosed]='fg=2,bold'
ZSH_HIGHLIGHT_STYLES[dollar-quoted-argument]='fg=10'
ZSH_HIGHLIGHT_STYLES[dollar-quoted-argument-unclosed]='fg=10,bold'
source /usr/share/nvm/init-nvm.sh
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh

View File

@ -61,8 +61,8 @@ end
-- Autostart programs
run_once({
"picom -b",
-- "sleep 0.25 && xrandr --output DP-1 --primary --auto --pos 0x0 --output HDMI-0 --auto --pos 2560x180",
"keepassxc"
"xfce4-clipman",
"flameshoot"
})
-- Choose the theme
@ -90,7 +90,9 @@ naughty.config.defaults.icon_size = 32
naughty.config.defaults.fg = beautiful.fg_tooltip
naughty.config.defaults.bg = beautiful.bg_tooltip
naughty.config.defaults.border_color = beautiful.notification_border_color
naughty.config.defaults.border_width = 0
naughty.config.defaults.border_width = 1
naughty.config.defaults.shape = function (cr, w, h) gears.shape.rounded_rect(cr, w, h, 6) end
naughty.config.defaults.hover_timeout = nil
awful.util.terminal = terminal
@ -194,7 +196,7 @@ local myawesomemenu = {
}
awful.util.mymainmenu = freedesktop.menu.build({
icon_size = beautiful.menu_height or 16,
icon_size = 16,
before = {
{ "Awesome", myawesomemenu, beautiful.awesome_icon },
-- other triads can be put here
@ -205,7 +207,6 @@ awful.util.mymainmenu = freedesktop.menu.build({
}
})
-- Screen
-- Re-set wallpaper when a screen's geometry changes (e.g. different resolution)
screen.connect_signal("property::geometry", function(s)
@ -219,6 +220,7 @@ screen.connect_signal("property::geometry", function(s)
gears.wallpaper.maximized(wallpaper, s, true)
end
end)
-- Create a wibox for each screen and add it
awful.screen.connect_for_each_screen(function(s) beautiful.connect(s) end)
@ -378,7 +380,12 @@ globalkeys = awful.util.table.join(
awful.key({ modkey }, "e", function () awful.spawn("xdg-open .") end, { group = "launcher", description = "Open File Explorer" }),
awful.key({ modkey }, "q", function () awful.spawn(browser) end, { group = "launcher", description = "Open browser window" }),
awful.key({ modkey }, "Return", function () awful.spawn(terminal) end, { group = "launcher", description = "Open terminal" }),
awful.key({ }, "Pause", function () awful.spawn("playerctl play-pause") end, { group = "launcher", description = "Play/Pause" }),
awful.key({ }, "XF86Tools", function () awful.spawn("playerctl -p spotify play-pause") end, { group = "audio", description = "Play/Pause" }),
awful.key({ }, "XF86AudioMute", function () awful.spawn("amixer set Master toggle") end, { group = "audio", description = "Mute" }),
awful.key({ }, "XF86AudioRaiseVolume", function () awful.spawn("amixer set Master 3%+") end, { group = "audio", description = "Volume Up" }),
awful.key({ }, "XF86AudioLowerVolume", function () awful.spawn("amixer set Master 3%-") end, { group = "audio", description = "Volume Down" }),
awful.key({ }, "XF86Launch5", function () awful.spawn("amixer set Capture toggle") end, { group = "audio", description = "Mute toggle" }),
-- Dropdown application
awful.key({ modkey }, "`", function () awful.screen.focused().quake:toggle() end, { group = "launcher", description = "Open quake style terminal" }),
@ -483,11 +490,13 @@ root.keys(globalkeys)
-- }}}
local client_colors = {
{ rule = { class = "Firefox" }, color = "#0c0c0d" },
{ rule = { class = "firefoxdeveloperedition" }, color = "#1c1b22" },
{ rule = { class = "kitty" }, color = "#0d0f18e6" },
{ rule = { class = "jetbrains-toolbox" }, color = "#111314" },
{ rule = { class = "krita" }, color = "#323232" },
{ rule = { class = "Code" }, color = "#181a1f" },
{ rule = { class = "TelegramDesktop" }, color = "#17212B" },
{ rule_any = { class = { "jetbrains-phpstorm", "jetbrains-idea", "jetbrains-pycharm" } }, color = "#2F3032" },
{ rule_any = { class = { "jetbrains-phpstorm", "jetbrains-idea", "jetbrains-pycharm" } }, color = "#2b2d30" },
}
-- Rules to apply to new clients (through the "manage" signal).
@ -502,7 +511,7 @@ awful.rules.rules = {
keys = clientkeys,
buttons = clientbuttons,
screen = awful.screen.preferred,
placement = awful.placement.no_overlap+awful.placement.no_offscreen,
-- placement = awful.placement.no_overlap+awful.placement.no_offscreen,
size_hints_honor = false,
floating = false,
allow_titlebars = true,
@ -519,7 +528,7 @@ awful.rules.rules = {
-- Jetbrains stuff
{ rule_any = { class = { "jetbrains-phpstorm", "jetbrains-idea", "jetbrains-pycharm" } },
properties = { titlebars_enabled = false, tag = awful.util.tagnames[1], maximized = false } },
properties = { titlebars_enabled = false, maximized = false, screen = 1 } },
{ rule_any = { name = { "*Emulator*", "Emulator" } },
properties = { floating = true, titlebar_enabled = false, border_width = 0 } },
@ -538,16 +547,28 @@ awful.rules.rules = {
{ rule = { class = "TelegramDesktop" },
properties = { tag = awful.util.tagnames[4], focusable = true, focus = true } },
{ rule = { class = "jetbrains-toolbox" },
properties = { tag = awful.util.tagnames[5], floating = true, sticky = true } },
{ rule = { class = "TelegramDesktop", name = "Media viewer" },
properties = { fullscreen = true } },
-- dialogs
{ rule = { type = "dialog" },
properties = { titlebars_enabled = true, floating = true, maximized = false, border_width = 1 } },
{ rule = { type = "utility" },
properties = { titlebars_enabled = true, floating = true, maximized = false, border_width = 1 } },
{ rule = { class = "gcr-prompter" },
properties = { titlebars_enabled = true, floating = true, maximized = false, border_width = 1 } },
{ rule = { type = "utility", class = "vlc" },
properties = { floating = true } },
-- jetbrains bugs
{ rule_any = { class = { "jetbrains-toolbox" } },
properties = { floating = true, sticky = true, maximized = false } },
{ rule = { class = "jetbrains-.*", name = "win.*" },
properties = { titlebars_enabled = false, allow_titlebars = false, focusable = false, floating = true } },
properties = { titlebars_enabled = false, allow_titlebars = false, focusable = false, floating = true } },
-- quake
{ rule = { class = "QuakeDD" },
@ -556,6 +577,22 @@ awful.rules.rules = {
-- keepassxc
{ rule = { class = "KeePassXC" },
properties = { titlebars_enabled = true, floating = true } },
-- games
{ rule = { class = "Minecraft.*" },
properties = { tag = awful.util.tagnames[6], focusable = true, focus = true, screen = 1 } },
{ rule_any = { name = { "Microsoft Teams Notification" } },
properties = {
titlebars_enabled = false,
floating = true,
focus = false,
draw_backdrop = false,
skip_decoration = true,
skip_taskbar = true,
ontop = true,
sticky = true }
},
}
-- Signals
@ -569,6 +606,10 @@ client.connect_signal("manage", function (c)
c.border_width = 1
end
c.shape = function(cr,w,h)
gears.shape.rounded_rect(cr,w,h,3)
end
if awesome.startup and
not c.size_hints.user_position
and not c.size_hints.program_position then
@ -601,7 +642,7 @@ client.connect_signal("request::titlebars", function(c)
)
local title = awful.titlebar.widget.titlewidget(c)
title.font = "Fira Sans Medium 8"
title.font = "Fira Sans Medium 9"
for index, rule in pairs(client_colors) do
if awful.rules.matches(c, rule) then
@ -610,7 +651,7 @@ client.connect_signal("request::titlebars", function(c)
end
end
awful.titlebar(c, { size = 20, fg_focus = "#ffffff", bg_focus = c.titlebar_color or beautiful.titlebar_bg_focus }) : setup {
awful.titlebar(c, { size = 28, fg_focus = "#ffffff", bg_focus = c.titlebar_color or beautiful.titlebar_bg_focus }) : setup {
{ -- Left
awful.titlebar.widget.iconwidget(c),
-- Title
@ -618,8 +659,8 @@ client.connect_signal("request::titlebars", function(c)
layout = wibox.container.margin,
left = 8,
right = 8,
top = 2,
bottom = 2,
top = 5,
bottom = 5,
},
{ -- Middle
{
@ -640,7 +681,7 @@ client.connect_signal("request::titlebars", function(c)
spacing = 6
},
layout = wibox.layout.margin,
top = 5, bottom = 4, left = 4, right = 8
top = 4, bottom = 4, left = 4, right = 8
},
layout = wibox.layout.align.horizontal
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 171 B

After

Width:  |  Height:  |  Size: 171 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 171 B

After

Width:  |  Height:  |  Size: 166 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 178 B

After

Width:  |  Height:  |  Size: 171 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 174 B

After

Width:  |  Height:  |  Size: 173 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 174 B

After

Width:  |  Height:  |  Size: 170 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 176 B

After

Width:  |  Height:  |  Size: 165 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 166 B

After

Width:  |  Height:  |  Size: 168 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 171 B

After

Width:  |  Height:  |  Size: 167 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 172 B

After

Width:  |  Height:  |  Size: 165 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 200 B

After

Width:  |  Height:  |  Size: 181 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 178 B

After

Width:  |  Height:  |  Size: 164 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 324 B

After

Width:  |  Height:  |  Size: 344 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 176 B

After

Width:  |  Height:  |  Size: 165 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 B

After

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 162 B

After

Width:  |  Height:  |  Size: 160 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 164 B

After

Width:  |  Height:  |  Size: 159 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 159 B

After

Width:  |  Height:  |  Size: 163 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 285 B

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 270 B

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 474 B

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 382 B

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 302 B

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 281 B

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 373 B

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 329 B

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 263 B

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 250 B

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 492 B

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 396 B

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 486 B

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 332 B

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -9,7 +9,7 @@ local fonts = {
mono_bold = "Jetbrains Mono ExtraBold 8"
}
fonts.widget = "Jetbrains Mono Bold 7"
fonts.widget = "Jetbrains Mono ExtraBold 8"
local colors = {
dark = "#161616",
@ -43,7 +43,7 @@ theme.fg_focus = colors.accent
theme.bg_urgent = colors.attention
theme.fg_urgent = colors.dark
theme.fg_widget = colors.light
theme.fg_widget = colors.dark
theme.taglist_bg_focus = colors.dark
theme.taglist_fg_focus = colors.accent
@ -55,19 +55,19 @@ theme.taglist_bg_urgent = "#C92132"
theme.taglist_fg_urgent = "#282828"
theme.tasklist_bg_normal = "#32302f"
theme.tasklist_fg_normal = "#ebdbb2"
theme.tasklist_fg_normal = colors.dark
theme.tasklist_bg_focus = "#32302f"
theme.tasklist_fg_focus = "#ebdbb2"
theme.tasklist_fg_focus = colors.dark
theme.tasklist_bg_urgent = "#C92132"
theme.tasklist_fg_urgent = "#32302f"
theme.tasklist_fg_urgent = colors.attention
theme.border_width = 0
theme.border_normal = "#111111"
theme.border_focus = "#000000"
theme.border_marked = "#CC9393"
theme.titlebar_bg_normal = "#111111"
theme.titlebar_bg_focus = "#000000"
theme.titlebar_bg_normal = "#212028"
theme.titlebar_bg_focus = "#1c1b22"
theme.titlebar_fg_normal = colors.white
theme.titlebar_fg_focus = colors.white
@ -109,13 +109,16 @@ theme.layout_cornersw = theme.dir .. "/icons/layout/co
theme.layout_cornerne = theme.dir .. "/icons/layout/cprmerne.png"
theme.layout_cornernw = theme.dir .. "/icons/layout/cornernw.png"
theme.tasklist_disable_icon = true
theme.tasklist_disable_icon = false
theme.tasklist_plain_task_name = true
theme.useless_gap = 3
theme.master_width_factor = 0.66
-- titlebar
theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close.png"
theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close-inactive.png"
theme.titlebar_close_button_focus_hover = theme.dir .. "/icons/titlebar/close-hover.png"
theme.titlebar_close_button_focus_press = theme.dir .. "/icons/titlebar/close-press.png"
theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/top.png"
theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/top-inactive.png"
@ -148,8 +151,12 @@ image.icons = {
hdd = icon("widget", "hdd"),
mem = icon("widget", "memory"),
temp = icon("widget", "temp"),
mic_on = icon("widget", "mic-on"),
mic_off = icon("widget", "mic-off"),
}
image.icons.mic = image.icons.mic_on
-- colors
theme.green = "#00b159"
theme.red = "#d64d4d"
@ -208,8 +215,9 @@ local cpu_widget = wibox.widget { image.icons.cpu, cpu.widget, layout = wibox.la
-- Coretemp (lain, average)
local temp_icon = wibox.widget.imagebox(theme.widget_temp)
local temp = lain.widget.temp({
tempfile = "/sys/class/thermal/thermal_zone2/temp",
settings = function()
widget:set_markup(markup.font(fonts.widget, markup.fg.color(theme.fg_widget, " " .. coretemp_now .. "° ")))
widget:set_markup(markup.font(fonts.widget, markup.fg.color(theme.fg_widget, string.format(" %.1f° ", coretemp_now))))
end
})
local temp_widget = wibox.widget { image.icons.temp, temp.widget, layout = wibox.layout.align.horizontal }
@ -227,6 +235,21 @@ local fs = lain.widget.fs({
})
local fs_widget = wibox.widget { image.icons.hdd, fs.widget, layout = wibox.layout.align.horizontal }
-- -- Mic
local mic = lain.widget.alsa({
channel = "Capture",
settings = function ()
if volume_now.status == "on" then
image.icons.mic = image.icons.mic_on
else
image.icons.mic = image.icons.mic_off
end
widget:set_markup(markup.font(fonts.widget, markup.fg.color(theme.fg_widget, string.format(" %s [%d%%]", volume_now.status, volume_now.level))))
end
})
local mic_widget = wibox.widget { image.icons.mic, mic.widget, layout = wibox.layout.align.horizontal }
function theme.connect(s)
-- Quake application
s.quake = lain.util.quake({
@ -274,8 +297,8 @@ function theme.connect(s)
shape = function(cr, width, height) return gears.shape.parallelogram(cr, width, height, width - 8) end
},
layout = {
spacing = 2,
layout = wibox.layout.fixed.horizontal
spacing = 4,
layout = wibox.layout.fixed.horizontal,
},
widget_template = {
{
@ -300,10 +323,41 @@ function theme.connect(s)
--s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons)
-- Create the wibox
s.mywibox = awful.wibar({ position = "top", screen = s, height = 18, bg = theme.bg_wibar, fg = theme.fg_wibar, type = dock })
s.mywibox = awful.wibar({ position = "top", screen = s, height = 26, bg = theme.bg_wibar, fg = theme.fg_wibar, type = dock })
s.tray = wibox.widget.systray()
s.mytasklist = awful.widget.tasklist {
screen = s,
filter = awful.widget.tasklist.filter.focused,
layout = {
spacing = 10,
layout = wibox.layout.flex.horizontal
},
widget_template = {
{
{
{
id = 'icon_role',
widget = wibox.widget.imagebox,
},
top = 5,
bottom = 5,
right = 10,
widget = wibox.container.margin,
},
{
id = 'text_role',
widget = wibox.widget.textbox,
},
layout = wibox.layout.fixed.horizontal,
},
left = 20,
right = 20,
widget = wibox.container.margin
},
}
-- s.tray:setup {
-- layout = wibox.layout.margin,
-- widget = wibox.container.background,
@ -313,6 +367,8 @@ function theme.connect(s)
-- Add widgets to the wibox
s.mywibox:setup {
layout = wibox.layout.align.horizontal,
widget = wibox.container.background,
bg = "#ffa90060",
expand = 'none',
{ -- Left widgets
layout = wibox.layout.margin,
@ -320,6 +376,7 @@ function theme.connect(s)
{
layout = wibox.layout.fixed.horizontal,
s.mytaglist,
s.mytasklist,
s.mypromptbox,
}
},
@ -329,21 +386,25 @@ function theme.connect(s)
date_widget,
},
{ -- Right widgets
layout = wibox.layout.fixed.horizontal,
layout = wibox.layout.margin,
top = 2, bottom = 2,
{
layout = wibox.layout.margin,
right = -8,
layout = wibox.layout.fixed.horizontal,
spacing = 8,
-- stat
{
widget = wibox.container.background,
shape = function (cr, w, h) gears.shape.parallelogram(cr, w, h, w - 8) end,
shape = function (cr, w, h) gears.shape.rounded_rect(cr, w, h, 4) end,
color = "#000000",
bg = "#000000",
bg = "#00000000",
{
layout = wibox.layout.margin,
left = 20, right = 20,
left = 8, right = 8,
{
layout = wibox.layout.fixed.horizontal,
spacing = 8,
-- Mic widget
mic_widget,
-- Fs widget
fs_widget,
-- Temp
@ -355,40 +416,41 @@ function theme.connect(s)
}
}
},
},
-- tray
{
widget = wibox.container.background,
shape = function (cr, w, h) gears.shape.parallelogram(cr, w, h, w - 8) end,
bg = "#FF9800",
{
layout = wibox.layout.margin,
left = 8, right = 8,
{
layout = wibox.layout.fixed.horizontal,
s.tray,
clock_widget,
}
}
},
-- Layout box
{
layout = wibox.layout.margin,
left = -8, right = -8,
-- tray
{
widget = wibox.container.background,
bg = "#000000",
shape = function (cr, w, h) gears.shape.parallelogram(cr, w, h, w - 8) end,
shape = function (cr, w, h) gears.shape.rounded_rect(cr, w, h, 4) end,
bg = "#FF9800",
{
layout = wibox.layout.margin,
s.mylayoutbox,
left = 16,
right = 16,
top = 1,
bottom = 1,
left = 8, right = 8, top = 2, bottom = 2,
{
layout = wibox.layout.fixed.horizontal,
spacing = 8,
s.tray,
clock_widget,
}
}
}
},
},
-- Layout box
{
layout = wibox.layout.margin,
right = 8,
{
widget = wibox.container.background,
bg = "#00000000",
shape = function (cr, w, h) gears.shape.rounded_rect(cr, w, h, 4) end,
{
layout = wibox.layout.margin,
s.mylayoutbox,
left = 8,
right = 8,
top = 2,
bottom = 2,
}
}
},
}
},
}
end

View File

@ -9,21 +9,18 @@ curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
# install zsh plugins
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
mkdir -p ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes
git clone https://github.com/ergenekonyigit/lambda-gitster.git
cp lambda-gitster/*.zsh-theme ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
# symlinks
ln -s $DIR/.vimrc ~/.vimrc
ln -s $DIR/.ideavimrc ~/.ideavimrc
ln -s $DIR/.gitconfig ~/.gitconfig
ln -s $DIR/.zshrc ~/.zshrc
ln -s $DIR/.Xdefaults ~/.Xdefaults
ln -sf $DIR/.vimrc ~/.vimrc
ln -sf $DIR/.ideavimrc ~/.ideavimrc
ln -sf $DIR/.gitconfig ~/.gitconfig
ln -sf $DIR/.zshrc ~/.zshrc
ln -sf $DIR/.Xdefaults ~/.Xdefaults
ln -sf $DIR/.p10k.zsh ~/.p10k.zsh
ln -s $DIR/awesome/ ~/.config/awesome/
ln -s $DIR/kitty/ ~/.config/kitty/
ln -s $DIR/nvim/ ~/.config/nvim/
ln -sf $DIR/awesome/ ~/.config/awesome/
ln -sf $DIR/kitty/ ~/.config/kitty/
ln -sf $DIR/nvim/ ~/.config/nvim/