Update 2019-05-27

This commit is contained in:
Nguyễn Gia Phong 2019-05-27 22:28:01 +07:00
parent 7183360982
commit 2f5a29f4df
78 changed files with 321 additions and 83 deletions

1
.gitignore vendored
View file

@ -2,3 +2,4 @@ vim/.cache/vim/viminfo
vim/.vim/__pycache__ vim/.vim/__pycache__
vim/.vim/plugged vim/.vim/plugged
meta/.config/gtk-3.0/bookmarks meta/.config/gtk-3.0/bookmarks
awesome/.config/awesome/vicious/

View file

@ -1,13 +1,9 @@
# dotfiles # dotfiles
Dotfiles of my Debian testing and Fedora systems, managed by GNU Stow. Dotfiles of my Debian testing, managed by GNU Stow.
![](debian-screenshot.png) ![](debian-screenshot.png)
The Debian desktop uses awesome, bash, Git, Luakit, ranger, Vim, XTerm The Debian desktop uses awesome, bash, Git, Luakit, ranger, Vim, XTerm
and Zathura. Most of these applications are themed with the and Zathura. Most of these applications are themed with the
[gruvbox](https://github.com/morhetz/gruvbox) colorscheme's light version. [srcery](https://github.com/srcery-colors/srcery-vim) colorscheme.
![](fedora-screenshot.png)
The newly-set-up Fedora is simply GNOME and Emacs.

View file

@ -44,7 +44,7 @@ end
-- {{{ Variable definitions -- {{{ Variable definitions
-- Themes define colours, icons, font and wallpapers. -- Themes define colours, icons, font and wallpapers.
beautiful.init"~/.config/awesome/themes/gruvbox/theme.lua" beautiful.init"~/.config/awesome/themes/srcery/theme.lua"
-- This is used later as the default terminal and editor to run. -- This is used later as the default terminal and editor to run.
local terminal = "x-terminal-emulator" local terminal = "x-terminal-emulator"
@ -173,8 +173,8 @@ vicious.register(mybattery_text, vicious.widgets.bat,
function (widget, args) function (widget, args)
return (" %s%03d%%"):format(args[1], args[2]) return (" %s%03d%%"):format(args[1], args[2])
end, 7, "BAT0") end, 7, "BAT0")
local mybattery = wibox.container.background(mybattery_text, "#98971a") local mybattery = wibox.container.background(mybattery_text, beautiful.green)
mybattery.fg = "#282828" mybattery.fg = beautiful.gray
mybattery:buttons(awful.util.table.join( mybattery:buttons(awful.util.table.join(
awful.button({}, 1, spawner"mate-power-statistics"), awful.button({}, 1, spawner"mate-power-statistics"),
awful.button({}, 3, spawner"mate-power-preferences") awful.button({}, 3, spawner"mate-power-preferences")
@ -205,8 +205,8 @@ local function volume_mute(parameter)
update_widget("pulsemixer --toggle-mute", myvolume_text) update_widget("pulsemixer --toggle-mute", myvolume_text)
end end
local myvolume = wibox.container.background(myvolume_text, "#689d6a") local myvolume = wibox.container.background(myvolume_text, beautiful.cyan)
myvolume.fg = "#282828" myvolume.fg = beautiful.gray
myvolume:buttons(awful.util.table.join( myvolume:buttons(awful.util.table.join(
awful.button({}, 1, volume_setter"-5"), awful.button({}, 1, volume_setter"-5"),
awful.button({}, 2, volume_mute), awful.button({}, 2, volume_mute),
@ -230,8 +230,8 @@ local function audacious_seeker(time)
end end
end end
local myplayer = wibox.container.background(myplayer_text, "#b16286") local myplayer = wibox.container.background(myplayer_text, beautiful.magenta)
myplayer.fg = "#282828" myplayer.fg = beautiful.gray
myplayer:buttons(awful.util.table.join( myplayer:buttons(awful.util.table.join(
awful.button({}, 1, spawner(audacious_rewind)), awful.button({}, 1, spawner(audacious_rewind)),
awful.button({}, 2, spawner(audacious_play_pause)), awful.button({}, 2, spawner(audacious_play_pause)),
@ -331,18 +331,18 @@ awful.screen.connect_for_each_screen(function (s)
layout = wibox.layout.fixed.horizontal, layout = wibox.layout.fixed.horizontal,
-- mylauncher, -- mylauncher,
{mytextclock, {mytextclock,
bg = "#cc241d", bg = beautiful.red,
fg = "#282828", fg = beautiful.gray,
widget = wibox.container.background}, widget = wibox.container.background},
wibox.widget.imagebox(beautiful.arrow0), wibox.widget.imagebox(beautiful.arrow0),
{mycpuusage, {mycpuusage,
bg = "#d65d0e", bg = beautiful.orange,
fg = "#282828", fg = beautiful.gray,
widget = wibox.container.background}, widget = wibox.container.background},
wibox.widget.imagebox(beautiful.arrow1), wibox.widget.imagebox(beautiful.arrow1),
{mymemusage, {mymemusage,
bg = "#d79921", bg = beautiful.yellow,
fg = "#282828", fg = beautiful.gray,
widget = wibox.container.background}, widget = wibox.container.background},
wibox.widget.imagebox(beautiful.arrow2), wibox.widget.imagebox(beautiful.arrow2),
mybattery, mybattery,
@ -350,8 +350,8 @@ awful.screen.connect_for_each_screen(function (s)
myvolume, myvolume,
wibox.widget.imagebox(beautiful.arrow4), wibox.widget.imagebox(beautiful.arrow4),
{myweather, {myweather,
bg = "#458588", bg = beautiful.blue,
fg = "#282828", fg = beautiful.gray,
widget = wibox.container.background}, widget = wibox.container.background},
wibox.widget.imagebox(beautiful.arrow5), wibox.widget.imagebox(beautiful.arrow5),
myplayer, myplayer,
@ -443,7 +443,7 @@ local globalkeys = awful.util.table.join(
{description = "open a root terminal", group = "launcher"}), {description = "open a root terminal", group = "launcher"}),
awful.key({modkey}, "v", spawner(editor), awful.key({modkey}, "v", spawner(editor),
{description = "open GVim", group = "launcher"}), {description = "open GVim", group = "launcher"}),
awful.key({modkey}, "e", spawner"emacs", awful.key({modkey}, "e", spawner"emacsclient -c",
{description = "open Emacs", group = "launcher"}), {description = "open Emacs", group = "launcher"}),
awful.key({modkey}, "b", spawner"luakit", awful.key({modkey}, "b", spawner"luakit",
{description = "open Luakit", group = "launcher"}), {description = "open Luakit", group = "launcher"}),
@ -455,6 +455,8 @@ local globalkeys = awful.util.table.join(
{description = "open Tor Browser", group = "launcher"}), {description = "open Tor Browser", group = "launcher"}),
awful.key({modkey}, "t", spawner"thunderbird", awful.key({modkey}, "t", spawner"thunderbird",
{description = "open Thunderbird", group = "launcher"}), {description = "open Thunderbird", group = "launcher"}),
awful.key({modkey}, "g", spawner"gimp",
{description = "open GIMP", group = "launcher"}),
awful.key({modkey, "Shift"}, "m", spawner"moodledesktop", awful.key({modkey, "Shift"}, "m", spawner"moodledesktop",
{description = "open Moodle Desktop", group = "launcher"}), {description = "open Moodle Desktop", group = "launcher"}),
awful.key({modkey}, "r", spawner(ranger), awful.key({modkey}, "r", spawner(ranger),
@ -465,7 +467,7 @@ local globalkeys = awful.util.table.join(
{description = "open Python 3 interpreter", group = "launcher"}), {description = "open Python 3 interpreter", group = "launcher"}),
awful.key({modkey, "Shift"}, "p", spawner(perl6), awful.key({modkey, "Shift"}, "p", spawner(perl6),
{description = "open Perl 6", group = "launcher"}), {description = "open Perl 6", group = "launcher"}),
awful.key({modkey}, "g", spawner(guile), awful.key({modkey, "Shift"}, "g", spawner(guile),
{description = "open Guile interpreter", group = "launcher"}), {description = "open Guile interpreter", group = "launcher"}),
awful.key({modkey}, "o", spawner(octave), awful.key({modkey}, "o", spawner(octave),
{description = "open Octave", group = "launcher"}), {description = "open Octave", group = "launcher"}),

View file

@ -1 +0,0 @@
gruvbox-dark

View file

@ -0,0 +1,12 @@
# Gruvbox awesome theme by McSinyx
## A few side notes
* The backgrounds are pixel-based, for best result please resize them using a
proper algorithim, e.g. in GIMP use *None* or *Linear* interpolation.
* Titlebar and wibox use some pixel arts, so please keep theme at the size of
22px.
* I added some 22-pixel high arrows to the theme. You might wanna use them to
rice your desktop in the *powerarrow* way.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,151 @@
-- srcery awesome theme
-- Copyright (C) 2019 Nguyễn Gia Phong
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
local theme = {}
-- Working directory (where you place this theme)
theme.wd = "~/.config/awesome/themes/srcery/"
theme.font = "Latin Modern Mono Caps 12"
theme.hotkeys_font = "Latin Modern Mono Bold 12"
theme.hotkeys_description_font = theme.font
-- Auxiliary colors
theme.black = '#1c1b19'
theme.gray = '#2d2c29'
theme.red = '#ef2f27'
theme.orange = '#ff5f00'
theme.yellow = '#fbb829'
theme.green = '#519f50'
theme.cyan = '#0aaeb3'
theme.blue = '#2c78bf'
theme.magenta = '#e02c6d'
theme.grey = '#918175'
theme.white = '#fce8c3'
theme.bg_normal = theme.black
theme.bg_focus = theme.gray
theme.bg_urgent = theme.bg_normal
theme.bg_minimize = theme.bg_focus
theme.bg_systray = theme.bg_normal
theme.hotkeys_bg = theme.bg_normal
theme.fg_normal = theme.white
theme.fg_focus = theme.fg_normal
theme.fg_urgent = theme.grey
theme.fg_minimize = theme.fg_normal
theme.hotkeys_fg = theme.fg_normal
theme.useless_gap = 0
theme.border_width = 2
theme.border_normal = theme.bg_focus
theme.border_focus = theme.orange
theme.border_marked = theme.red
theme.hotkeys_border_color = theme.border_focus
theme.hotkeys_border_width = theme.border_width
theme.hotkeys_modifiers_fg = theme.fg_urgent
-- There are other variable sets
-- overriding the default one when
-- defined, the sets are:
-- taglist_[bg|fg]_[focus|urgent|occupied|empty]
-- tasklist_[bg|fg]_[focus|urgent]
-- titlebar_[bg|fg]_[normal|focus]
-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color]
-- mouse_finder_[color|timeout|animate_timeout|radius|factor]
theme.titlebar_bg_normal = theme.bg_normal
theme.titlebar_bg_focus = theme.bg_normal
-- Display the taglist squares
theme.taglist_squares_sel = theme.wd .. "taglist/squaref.png"
theme.taglist_squares_unsel = theme.wd .. "taglist/square.png"
-- Variables set for theming the menu:
-- menu_[bg|fg]_[normal|focus]
-- menu_[border_color|border_width]
theme.menu_submenu_icon = theme.wd .. "submenu.png"
theme.menu_height = 22
theme.menu_width = 160
-- You can add as many variables as
-- you wish and access them by using
-- beautiful.variable in your rc.lua
--theme.bg_widget = "#cc0000"
-- Define the image to load
theme.titlebar_close_button_normal = theme.wd .. "titlebar/normal.png"
theme.titlebar_close_button_focus = theme.wd .. "titlebar/close.png"
theme.titlebar_minimize_button_normal = theme.wd .. "titlebar/normal.png"
theme.titlebar_minimize_button_focus = theme.wd .. "titlebar/minimize.png"
theme.titlebar_ontop_button_normal_inactive = theme.wd .. "titlebar/normal.png"
theme.titlebar_ontop_button_focus_inactive = theme.wd .. "titlebar/ontop_inactive.png"
theme.titlebar_ontop_button_normal_active = theme.wd .. "titlebar/normal.png"
theme.titlebar_ontop_button_focus_active = theme.wd .. "titlebar/ontop_active.png"
theme.titlebar_sticky_button_normal_inactive = theme.wd .. "titlebar/normal.png"
theme.titlebar_sticky_button_focus_inactive = theme.wd .. "titlebar/sticky_inactive.png"
theme.titlebar_sticky_button_normal_active = theme.wd .. "titlebar/normal.png"
theme.titlebar_sticky_button_focus_active = theme.wd .. "titlebar/sticky_active.png"
theme.titlebar_floating_button_normal_inactive = theme.wd .. "titlebar/normal.png"
theme.titlebar_floating_button_focus_inactive = theme.wd .. "titlebar/floating_inactive.png"
theme.titlebar_floating_button_normal_active = theme.wd .. "titlebar/normal.png"
theme.titlebar_floating_button_focus_active = theme.wd .. "titlebar/floating_active.png"
theme.titlebar_maximized_button_normal_inactive = theme.wd .. "titlebar/normal.png"
theme.titlebar_maximized_button_focus_inactive = theme.wd .. "titlebar/maximized_inactive.png"
theme.titlebar_maximized_button_normal_active = theme.wd .. "titlebar/normal.png"
theme.titlebar_maximized_button_focus_active = theme.wd .. "titlebar/maximized_active.png"
--theme.wallpaper = theme.wd .. "background.png"
-- You can use your own layout icons like this:
theme.layout_fairh = theme.wd .. "layouts/fairh.png"
theme.layout_fairv = theme.wd .. "layouts/fairv.png"
theme.layout_floating = theme.wd .. "layouts/floating.png"
theme.layout_magnifier = theme.wd .. "layouts/magnifier.png"
theme.layout_max = theme.wd .. "layouts/max.png"
theme.layout_fullscreen = theme.wd .. "layouts/fullscreen.png"
theme.layout_tilebottom = theme.wd .. "layouts/tilebottom.png"
theme.layout_tileleft = theme.wd .. "layouts/tileleft.png"
theme.layout_tile = theme.wd .. "layouts/tile.png"
theme.layout_tiletop = theme.wd .. "layouts/tiletop.png"
theme.layout_spiral = theme.wd .. "layouts/spiral.png"
theme.layout_dwindle = theme.wd .. "layouts/dwindle.png"
theme.layout_cornernw = theme.wd .. "layouts/cornernw.png"
theme.layout_cornerne = theme.wd .. "layouts/cornerne.png"
theme.layout_cornersw = theme.wd .. "layouts/cornersw.png"
theme.layout_cornerse = theme.wd .. "layouts/cornerse.png"
theme.awesome_icon = theme.wd .. "awesome.png"
-- Define the icon theme for application icons. If not set then the icons
-- from /usr/share/icons and /usr/share/icons/hicolor will be used.
theme.icon_theme = nil
-- Arrows
theme.arrow0 = theme.wd .. "arrows/0.png"
theme.arrow1 = theme.wd .. "arrows/1.png"
theme.arrow2 = theme.wd .. "arrows/2.png"
theme.arrow3 = theme.wd .. "arrows/3.png"
theme.arrow4 = theme.wd .. "arrows/4.png"
theme.arrow5 = theme.wd .. "arrows/5.png"
theme.arrow6 = theme.wd .. "arrows/6.png"
return theme

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

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: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4 KiB

View file

@ -1,25 +0,0 @@
*background: #282828
*foreground: #ebdbb2
*color0: #282828
*color1: #cc241d
*color2: #98971a
*color3: #d79921
*color4: #458588
*color5: #b16286
*color6: #689d6a
*color7: #a89984
*color8: #928374
*color9: #fb4934
*color10: #b8bb26
*color11: #fabd2f
*color12: #83a598
*color13: #d3869b
*color14: #8ec07c
*color15: #ebdbb2
*loginShell: true
*scrollBar: false
*saveLines: 65535
*cursorBlink: false
*jumpScroll: true
URxvt.font: xft:Latin Modern Mono:size=12
URxvt.termName: rxvt-unicode-256color

View file

@ -0,0 +1 @@
/usr/lib/systemd/user/emacs.service

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 MiB

View file

@ -1,11 +0,0 @@
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/.local/bin:$HOME/bin:$HOME/.local/share/go/bin:$HOME/.cargo/bin
export PATH
export GOPATH=$HOME/.local/share/go

View file

@ -1,13 +0,0 @@
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
alias stow='stow -t /home/436e58'
alias raku=perl6

View file

@ -1 +0,0 @@
theme-dark.lua

View file

@ -0,0 +1,104 @@
-- srcery luakit theme
-- Copyright (C) 2019 Nguyễn Gia Phong
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
local theme = {}
local color = {black = '#1C1B19', red = '#EF2F27', green = '#519F50',
yellow = '#FBB829', blue = '#2C78BF', magenta = '#E02C6D',
cyan = '#0AAEB3', white = '#918175', brightblack = '#2D2C29',
brightred = '#F75341', brightgreen = '#98BC37',
brightyellow = '#FED06E', brightblue = '#68A8E4',
brightmagenta = '#FF5C8F', brightcyan = '#53FDE9',
brightwhite = '#FCE8C3'}
-- Default settings
theme.font = '12pt Latin Modern Mono'
theme.fg = color.brightwhite
theme.bg = color.black
-- General colours
theme.success_fg = color.brightgreen
theme.loaded_fg = color.brightblue
theme.error_fg = theme.fg
theme.error_bg = color.red
-- Warning colours
theme.warning_fg = color.red
theme.warning_bg = theme.bg
-- Notification colours
theme.notif_fg = color.yellow
theme.notif_bg = theme.bg
-- Menu colours
theme.menu_fg = theme.fg
theme.menu_bg = color.brightblack
theme.menu_selected_fg = theme.menu_fg
theme.menu_selected_bg = color.magenta
theme.menu_title_bg = theme.menu_bg
theme.menu_primary_title_fg = color.green
theme.menu_secondary_title_fg = color.cyan
theme.menu_disabled_fg = color.white
theme.menu_disabled_bg = theme.menu_bg
theme.menu_enabled_fg = theme.menu_fg
theme.menu_enabled_bg = theme.menu_bg
theme.menu_active_fg = color.red
theme.menu_active_bg = theme.menu_bg
-- Proxy manager
theme.proxy_active_menu_fg = theme.fg
theme.proxy_active_menu_bg = theme.bg
theme.proxy_inactive_menu_fg = color.green
theme.proxy_inactive_menu_bg = theme.bg
-- Statusbar specific
theme.sbar_fg = theme.fg
theme.sbar_bg = theme.bg
-- Downloadbar specific
theme.dbar_fg = theme.fg
theme.dbar_bg = theme.bg
theme.dbar_error_fg = color.brightred
-- Input bar specific
theme.ibar_fg = theme.fg
theme.ibar_bg = theme.bg
-- Tab label
theme.tab_fg = theme.fg
theme.tab_bg = color.brightblack
theme.tab_hover_bg = color.blue
theme.tab_ntheme = color.white
theme.selected_fg = theme.fg
theme.selected_bg = theme.bg
theme.selected_ntheme = color.white
theme.loading_fg = theme.loaded_fg
theme.loading_bg = theme.loaded_bg
theme.selected_private_tab_bg = color.brightmagenta
theme.private_tab_bg = color.magenta
-- Trusted/untrusted ssl colours
theme.trust_fg = color.brightgreen
theme.notrust_fg = color.brightred
-- General colour pairings
theme.ok = {fg = theme.fg, bg = theme.bg}
theme.warn = {fg = color.brightred, bg = theme.bg}
theme.error = {fg = theme.fg, bg = color.red}
return theme

26
meta/.Xresources-dark Normal file
View file

@ -0,0 +1,26 @@
*foreground: #fce8c3
*background: #1c1b19
*cursorColor: #fce8c3
*.color0: #1c1b19
*.color1: #ef2f27
*.color2: #519f50
*.color3: #fbb829
*.color4: #2c78bf
*.color5: #e02c6d
*.color6: #0aaeb3
*.color7: #918175
*.color8: #2D2C29
*.color9: #f75341
*.color10: #98bc37
*.color11: #fed06e
*.color12: #68A8E4
*.color13: #ff5c8f
*.color14: #53fde9
*.color15: #fce8c3
*loginShell: true
*scrollBar: false
*saveLines: 65535
*cursorBlink: false
*jumpScroll: true
URxvt.font: xft:Latin Modern Mono:size=12
URxvt.termName: rxvt-unicode-256color

Binary file not shown.

View file

@ -8,9 +8,9 @@
# for ssh logins, install and configure the libpam-umask package. # for ssh logins, install and configure the libpam-umask package.
#umask 022 #umask 022
export PATH="$HOME/.local/bin:$HOME/.local/share/go/bin:$HOME/.cargo/bin:$PATH"
export MANPATH="$HOME/.local/share/man:$MANPATH"
export GOPATH="$HOME/.local/share/go" export GOPATH="$HOME/.local/share/go"
export PATH="$HOME/.local/bin:$GOPATH/bin:$HOME/.cargo/bin:$HOME/.luarocks/bin:$PATH"
export MANPATH="$HOME/.local/share/man:$MANPATH"
export XMODIFIERS=@im=ibus export XMODIFIERS=@im=ibus
#export WEBKIT_DISABLE_COMPOSITING_MODE=1 #export WEBKIT_DISABLE_COMPOSITING_MODE=1
export NLTK_DATA="$HOME/Sources/nlp/nltk_data" export NLTK_DATA="$HOME/Sources/nlp/nltk_data"
@ -25,6 +25,3 @@ fi
# OPAM configuration # OPAM configuration
. /home/cnx/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true . /home/cnx/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true
# Gruvbox colorscheme
source "$HOME/.vim/plugged/gruvbox/gruvbox_256palette.sh"

View file

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
xrdb -merge ~/.Xresources xrdb -merge ~/.Xresources
xrandr --output DP-1 --mode 1600x900 --primary --right-of eDP-1 xrandr --output DP-1 --mode 1600x900 --primary --right-of eDP-1
xsetroot -solid '#282828' xsetroot -solid '#1c1b19'
redshift-gtk -l 21.028333:105.854167 & redshift-gtk -l 21.028333:105.854167 &
mate-power-manager & mate-power-manager &
ibus-daemon -drx ibus-daemon -drx

View file

Before

Width:  |  Height:  |  Size: 524 KiB

After

Width:  |  Height:  |  Size: 524 KiB

View file

@ -32,7 +32,7 @@ command W w
call plug#begin('~/.vim/plugged') call plug#begin('~/.vim/plugged')
Plug 'https://github.com/sheerun/vim-polyglot.git' Plug 'https://github.com/sheerun/vim-polyglot.git'
Plug 'https://github.com/morhetz/gruvbox.git' Plug 'https://github.com/srcery-colors/srcery-vim.git'
Plug 'https://github.com/tpope/vim-abolish.git' Plug 'https://github.com/tpope/vim-abolish.git'
Plug 'https://github.com/drmikehenry/vim-fontsize.git' Plug 'https://github.com/drmikehenry/vim-fontsize.git'
Plug 'https://github.com/lervag/vimtex.git', {'for': 'tex'} Plug 'https://github.com/lervag/vimtex.git', {'for': 'tex'}
@ -40,5 +40,4 @@ Plug 'https://github.com/kovisoft/slimv', {'for': 'lisp'}
call plug#end() call plug#end()
set t_Co=256 set t_Co=256
set background=dark colorscheme srcery
colorscheme gruvbox