mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-08-10 01:51:15 +10:00
Pushing some dotfile edits.
This commit is contained in:
@@ -110,7 +110,7 @@ local filemanager = "thunar"
|
||||
local mailclient = "geary"
|
||||
local mediaplayer = "vlc"
|
||||
local scrlocker = "slimlock"
|
||||
local terminal = "st"
|
||||
local terminal = "alacritty"
|
||||
local virtualmachine = "virtualbox"
|
||||
|
||||
-- awesome variables
|
||||
@@ -477,8 +477,8 @@ globalkeys = my_table.join(
|
||||
{description = "delete tag", group = "tag"}),
|
||||
|
||||
-- Standard program
|
||||
awful.key({ modkey, }, "Return", function () awful.spawn(terminal) end,
|
||||
{description = terminal, group = "super"}),
|
||||
awful.key({ modkey, }, "Return", function () awful.spawn( terminal.." -e fish" ) end,
|
||||
{description = "terminal with fish shell", group = "super"}),
|
||||
awful.key({ modkey, "Shift" }, "r", awesome.restart,
|
||||
{description = "reload awesome", group = "awesome"}),
|
||||
awful.key({ modkey, "Shift" }, "q", function () awful.spawn.with_shell( '~/.dmenu/prompt "are you sure?" "killall awesome"' ) end,
|
||||
|
||||
@@ -63,10 +63,12 @@ filetype plugin indent on " required
|
||||
set path+=** " Searches current directory recursively.
|
||||
set wildmenu " Display all matches when tab complete.
|
||||
set incsearch " Incremental search
|
||||
set hidden " Needed to keep multiple buffers open
|
||||
set nobackup " No auto backups
|
||||
set noswapfile " No swap
|
||||
set t_Co=256 " Set if term supports 256 colors.
|
||||
set number relativenumber " Display line numbers
|
||||
set clipboard=unnamedplus " Copy/paste between vim and other programs.
|
||||
syntax enable
|
||||
let g:rehash256 = 1
|
||||
|
||||
@@ -184,7 +186,7 @@ map <Leader>ms :InstantMarkdownStop<CR> " Kills the preview
|
||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
" => Open terminal inside Vim
|
||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
map <Leader>tt :vnew term://bash<CR>
|
||||
map <Leader>tt :vnew term://fish<CR>
|
||||
|
||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
" => Mouse Scrolling
|
||||
|
||||
+18
-17
@@ -371,13 +371,13 @@ monitor = ${env:MONITOR}
|
||||
monitor-strict = false
|
||||
override-redirect = false
|
||||
width = 100%
|
||||
height = 30
|
||||
height = 20
|
||||
;offset-x = 1%
|
||||
;offset-y = 1%
|
||||
radius = 0.0
|
||||
fixed-center = true
|
||||
bottom = false
|
||||
separator = |
|
||||
separator =
|
||||
|
||||
background = ${colors.background}
|
||||
foreground = ${colors.foreground}
|
||||
@@ -395,23 +395,23 @@ border-color = #00000000
|
||||
padding-left = 0
|
||||
padding-right = 1
|
||||
|
||||
module-margin-left = 3
|
||||
module-margin-right = 3
|
||||
module-margin-left = 0
|
||||
module-margin-right = 0
|
||||
|
||||
; Enable support for inter-process messaging
|
||||
; See the Messaging wiki page for more details.
|
||||
enable-ipc = true
|
||||
|
||||
;https://github.com/jaagr/polybar/wiki/Fonts
|
||||
font-0 = "Noto Sans:size=10;0"
|
||||
font-1 = "FontAwesome:size=13;0"
|
||||
font-2 = "Noto Sans:size=10;0"
|
||||
font-3 = "Noto Sans Mono:size=10;0"
|
||||
font-4 = "FontAwesome5Brands:size=13;0"
|
||||
font-0 = "UbuntuMono Nerd Font:size=10;2"
|
||||
font-1 = "UbuntuMono Nerd Font:size=16;3"
|
||||
font-2 = "Font Awesome 5 Free:style=Regular:pixelsize=8;1"
|
||||
font-3 = "Font Awesome 5 Free:style=Solid:pixelsize=8;1"
|
||||
font-4 = "Font Awesome 5 Brands:pixelsize=8;1"
|
||||
|
||||
modules-left = ewmh title-xmonad
|
||||
modules-center = kernel
|
||||
modules-right = pavolume memory2 cpu2 date
|
||||
modules-left = xmonad
|
||||
modules-center =
|
||||
modules-right = arrow1 networkspeedup networkspeeddown arrow2 memory2 arrow3 cpu2 arrow2 pavolume arrow3 arch-aur-updates arrow2 date
|
||||
|
||||
tray-detached = false
|
||||
tray-offset-x = 0
|
||||
@@ -1201,7 +1201,7 @@ type = internal/network
|
||||
;interface = wlp3s0
|
||||
;interface = enp14s0
|
||||
;interface = enp0s31f6
|
||||
interface = enp4s0
|
||||
interface = enp6s0
|
||||
label-connected = "%upspeed:7%"
|
||||
format-connected = <label-connected>
|
||||
format-connected-prefix = " "
|
||||
@@ -1217,7 +1217,7 @@ type = internal/network
|
||||
;interface = wlp3s0
|
||||
;interface = enp14s0
|
||||
;interface = enp0s31f6
|
||||
interface = enp4s0
|
||||
interface = enp6s0
|
||||
label-connected = "%downspeed:7%"
|
||||
format-connected = <label-connected>
|
||||
format-connected-prefix = " "
|
||||
@@ -1361,11 +1361,12 @@ label = %output:0:150:%
|
||||
|
||||
################################################################################
|
||||
|
||||
[module/title-xmonad]
|
||||
[module/xmonad]
|
||||
type = custom/script
|
||||
exec = tail -F /tmp/.xmonad-title-log
|
||||
exec-if = [ -p /tmp/.xmonad-title-log ]
|
||||
exec = xmonad-log
|
||||
tail = true
|
||||
format-background = ${colors.background}
|
||||
format-foreground = ${colors.foreground}
|
||||
|
||||
################################################################################
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ from typing import List # noqa: F401
|
||||
|
||||
##### DEFINING SOME VARIABLES #####
|
||||
mod = "mod4" # Sets mod key to SUPER/WINDOWS
|
||||
myTerm = "st" # My terminal of choice
|
||||
myTerm = "alacritty" # My terminal of choice
|
||||
myConfig = "/home/dt/.config/qtile/config.py" # The Qtile config file location
|
||||
|
||||
##### KEYBINDINGS #####
|
||||
@@ -42,8 +42,8 @@ keys = [
|
||||
### The essentials
|
||||
Key(
|
||||
[mod], "Return",
|
||||
lazy.spawn(myTerm),
|
||||
desc='Launches Terminal'
|
||||
lazy.spawn(myTerm+" -e fish"),
|
||||
desc='Launches My Terminal With Fish Shell'
|
||||
),
|
||||
Key(
|
||||
[mod, "shift"], "Return",
|
||||
|
||||
@@ -12,14 +12,16 @@ Config { font = "xft:Mononoki Nerd Font:pixelsize=12:antialias=true:hinting=t
|
||||
, allDesktops = True
|
||||
, persistent = True
|
||||
, iconRoot = "/home/dt/.xmonad/xpm/" -- default: "."
|
||||
, commands = [ Run Date "%a, %b %d %Y, %H:%M:%S" "date" 10
|
||||
, Run Network "enp6s0" ["-t", "<icon=net_up_20.xpm/>up <rxbar> <icon=net_down_20.xpm/>dn <txbar>"] 10
|
||||
, Run Cpu ["-t", "<icon=cpu_20.xpm/> cpu <bar> (<total>%)","-H","50","--high","red"] 10
|
||||
, Run Memory ["-t", "<icon=memory-icon_20.xpm/> mem <usedbar> (<usedratio>%)"] 10
|
||||
, Run DiskU [("/", "<icon=harddisk-icon_20.xpm/> hdd <usedbar> (<used>)")] [] 3600
|
||||
, commands = [ Run Date "\xf133 %b %d %Y (%H:%M)" "date" 10
|
||||
, Run Network "enp6s0" ["-t", "\xf0aa <rx>kb \xf0ab <tx>kb"] 10
|
||||
, Run Cpu ["-t", "\xf108 cpu: (<total>%)","-H","50","--high","red"] 10
|
||||
, Run Memory ["-t", "\xf233 mem: <used>M (<usedratio>%)"] 10
|
||||
, Run DiskU [("/", "\xf0c7 hdd: <free> free")] [] 3600
|
||||
, Run Com "pacupdate" [] "" 3600
|
||||
, Run Com "kernel" [] "" 3600
|
||||
, Run UnsafeStdinReader
|
||||
]
|
||||
, sepChar = "%"
|
||||
, alignSep = "}{"
|
||||
, template = " <icon=haskell_20.xpm/> <fc=#666666>|</fc> %UnsafeStdinReader% }{ <fc=#FFB86C>%cpu%</fc> <fc=#FF5555>%memory%</fc> <fc=#82AAFF>%disku%</fc> <fc=#c3e88d>%enp6s0%</fc> <icon=calendar-clock-icon_20.xpm/> <fc=#8BE9FD>%date%</fc> "
|
||||
, template = " <icon=haskell_20.xpm/> <fc=#666666>|</fc> %UnsafeStdinReader% }{ <fc=#b3afc2> %kernel%</fc><fc=#666666>| </fc><fc=#FFB86C>%cpu% </fc><fc=#666666>| </fc><fc=#FF5555>%memory% </fc><fc=#666666>| </fc><fc=#82AAFF>%disku% </fc><fc=#666666>| </fc><fc=#c3e88d>%enp6s0% </fc><fc=#666666>| </fc><fc=#e1acff> %pacupdate%</fc><fc=#666666>| </fc><fc=#8BE9FD>%date%</fc> "
|
||||
}
|
||||
|
||||
@@ -12,14 +12,16 @@ Config { font = "xft:Mononoki Nerd Font:pixelsize=12:antialias=true:hinting=t
|
||||
, allDesktops = True
|
||||
, persistent = True
|
||||
, iconRoot = "/home/dt/.xmonad/xpm/" -- default: "."
|
||||
, commands = [ Run Date "%a, %b %d %Y, %H:%M:%S" "date" 10
|
||||
, Run Network "enp6s0" ["-t", "<icon=net_up_20.xpm/>up <rxbar> <icon=net_down_20.xpm/>dn <txbar>"] 10
|
||||
, Run Cpu ["-t", "<icon=cpu_20.xpm/> cpu <bar> (<total>%)","-H","50","--high","red"] 10
|
||||
, Run Memory ["-t", "<icon=memory-icon_20.xpm/> mem <usedbar> (<usedratio>%)"] 10
|
||||
, Run DiskU [("/", "<icon=harddisk-icon_20.xpm/> hdd <usedbar> (<used>)")] [] 3600
|
||||
, commands = [ Run Date "\xf133 %b %d %Y (%H:%M)" "date" 10
|
||||
, Run Network "enp6s0" ["-t", "\xf0aa <rx>kb \xf0ab <tx>kb"] 10
|
||||
, Run Cpu ["-t", "\xf108 cpu: (<total>%)","-H","50","--high","red"] 10
|
||||
, Run Memory ["-t", "\xf233 mem: <used>M (<usedratio>%)"] 10
|
||||
, Run DiskU [("/", "\xf0c7 hdd: <free> free")] [] 3600
|
||||
, Run Com "pacupdate" [] "" 3600
|
||||
, Run Com "kernel" [] "" 3600
|
||||
, Run UnsafeStdinReader
|
||||
]
|
||||
, sepChar = "%"
|
||||
, alignSep = "}{"
|
||||
, template = " <icon=haskell_20.xpm/> <fc=#666666>|</fc> %UnsafeStdinReader% }{ <fc=#FFB86C>%cpu%</fc> <fc=#FF5555>%memory%</fc> <fc=#82AAFF>%disku%</fc> <fc=#c3e88d>%enp6s0%</fc> <icon=calendar-clock-icon_20.xpm/> <fc=#8BE9FD>%date%</fc> "
|
||||
, template = " <icon=haskell_20.xpm/> <fc=#666666>|</fc> %UnsafeStdinReader% }{ <fc=#b3afc2> %kernel%</fc><fc=#666666>| </fc><fc=#FFB86C>%cpu% </fc><fc=#666666>| </fc><fc=#FF5555>%memory% </fc><fc=#666666>| </fc><fc=#82AAFF>%disku% </fc><fc=#666666>| </fc><fc=#c3e88d>%enp6s0% </fc><fc=#666666>| </fc><fc=#e1acff> %pacupdate%</fc><fc=#666666>| </fc><fc=#8BE9FD>%date%</fc> "
|
||||
}
|
||||
|
||||
@@ -12,14 +12,16 @@ Config { font = "xft:Mononoki Nerd Font:pixelsize=12:antialias=true:hinting=t
|
||||
, allDesktops = True
|
||||
, persistent = True
|
||||
, iconRoot = "/home/dt/.xmonad/xpm/" -- default: "."
|
||||
, commands = [ Run Date "%a, %b %d %Y, %H:%M:%S" "date" 10
|
||||
, Run Network "enp6s0" ["-t", "<icon=net_up_20.xpm/>up <rxbar> <icon=net_down_20.xpm/>dn <txbar>"] 10
|
||||
, Run Cpu ["-t", "<icon=cpu_20.xpm/> cpu <bar> (<total>%)","-H","50","--high","red"] 10
|
||||
, Run Memory ["-t", "<icon=memory-icon_20.xpm/> mem <usedbar> (<usedratio>%)"] 10
|
||||
, Run DiskU [("/", "<icon=harddisk-icon_20.xpm/> hdd <usedbar> (<used>)")] [] 3600
|
||||
, commands = [ Run Date "\xf133 %b %d %Y (%H:%M)" "date" 10
|
||||
, Run Network "enp6s0" ["-t", "\xf0aa <rx>kb \xf0ab <tx>kb"] 10
|
||||
, Run Cpu ["-t", "\xf108 cpu: (<total>%)","-H","50","--high","red"] 10
|
||||
, Run Memory ["-t", "\xf233 mem: <used>M (<usedratio>%)"] 10
|
||||
, Run DiskU [("/", "\xf0c7 hdd: <free> free")] [] 3600
|
||||
, Run Com "pacupdate" [] "" 3600
|
||||
, Run Com "kernel" [] "" 3600
|
||||
, Run UnsafeStdinReader
|
||||
]
|
||||
, sepChar = "%"
|
||||
, alignSep = "}{"
|
||||
, template = " <icon=haskell_20.xpm/> <fc=#666666>|</fc> %UnsafeStdinReader% }{ <fc=#FFB86C>%cpu%</fc> <fc=#FF5555>%memory%</fc> <fc=#82AAFF>%disku%</fc> <fc=#c3e88d>%enp6s0%</fc> <icon=calendar-clock-icon_20.xpm/> <fc=#8BE9FD>%date%</fc> "
|
||||
, template = " <icon=haskell_20.xpm/> <fc=#666666>|</fc> %UnsafeStdinReader% }{ <fc=#b3afc2> %kernel%</fc><fc=#666666>| </fc><fc=#FFB86C>%cpu% </fc><fc=#666666>| </fc><fc=#FF5555>%memory% </fc><fc=#666666>| </fc><fc=#82AAFF>%disku% </fc><fc=#666666>| </fc><fc=#c3e88d>%enp6s0% </fc><fc=#666666>| </fc><fc=#e1acff> %pacupdate%</fc><fc=#666666>| </fc><fc=#8BE9FD>%date%</fc> "
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user