Clean some files

This commit is contained in:
Marco Thomas
2021-05-09 16:50:11 +02:00
parent 83b87f516f
commit a9a1915407
4 changed files with 68 additions and 34 deletions

View File

@@ -17,6 +17,7 @@
+ Image-Viewer: sxiv + Image-Viewer: sxiv
+ Launcher: [dmenu](https://github.com/crammk/dmenu) + Launcher: [dmenu](https://github.com/crammk/dmenu)
+ Lock: [slock](https://github.com/crammk/slock) + Lock: [slock](https://github.com/crammk/slock)
+ Mouse-Settings: piper
+ Music: spotify + Music: spotify
+ Pdf-Viewer: zathura with mupdf + Pdf-Viewer: zathura with mupdf
+ Screenshots: Flameshot + Screenshots: Flameshot

View File

@@ -1,28 +1,58 @@
# Colors (Nord) # Copyright (c) 2017-present Arctic Ice Studio <development@arcticicestudio.com>
# Copyright (c) 2017-present Sven Greb <code@svengreb.de>
# Project: Nord Alacritty
# Version: 0.1.0
# Repository: https://github.com/arcticicestudio/nord-alacritty
# License: MIT
# References:
# https://github.com/alacritty/alacritty
colors: colors:
# Default colors primary:
primary: background: '#2e3440'
background: '#2E3440' foreground: '#d8dee9'
foreground: '#D8DEE9' dim_foreground: '#a5abb6'
cursor:
# Normal colors text: '#2e3440'
normal: cursor: '#d8dee9'
black: '#3B4252' vi_mode_cursor:
red: '#BF616A' text: '#2e3440'
green: '#A3BE8C' cursor: '#d8dee9'
yellow: '#EBCB8B' selection:
blue: '#81A1C1' text: CellForeground
magenta: '#B48EAD' background: '#4c566a'
cyan: '#88C0D0' search:
white: '#E5E9F0' matches:
foreground: CellBackground
# Bright colors background: '#88c0d0'
bright: bar:
black: '#4C566A' background: '#434c5e'
red: '#BF616A' foreground: '#d8dee9'
green: '#A3BE8C' normal:
yellow: '#EBCB8B' black: '#3b4252'
blue: '#81A1C1' red: '#bf616a'
magenta: '#B48EAD' green: '#a3be8c'
cyan: '#8FBCBB' yellow: '#ebcb8b'
white: '#ECEFF4' blue: '#81a1c1'
magenta: '#b48ead'
cyan: '#88c0d0'
white: '#e5e9f0'
bright:
black: '#4c566a'
red: '#bf616a'
green: '#a3be8c'
yellow: '#ebcb8b'
blue: '#81a1c1'
magenta: '#b48ead'
cyan: '#8fbcbb'
white: '#eceff4'
dim:
black: '#373e4d'
red: '#94545d'
green: '#809575'
yellow: '#b29e75'
blue: '#68809a'
magenta: '#8c738c'
cyan: '#6d96a5'
white: '#aeb3bb'

View File

@@ -29,7 +29,7 @@ case $TERM in
# Write some info to terminal title. # Write some info to terminal title.
# This is seen when the shell prompts for input. # This is seen when the shell prompts for input.
function precmd { function precmd {
print -Pn "\e]0;%(1j,%j job%(2j|s|); ,)%~ - $TERM\a" print -Pn "\e]0;%(1j,%j job%(2j|s|) - ,)%~ - $TERM\a"
} }
# Write command and args to terminal title. # Write command and args to terminal title.
# This is seen while the shell waits for a command to complete. # This is seen while the shell waits for a command to complete.

View File

@@ -1,3 +1,5 @@
;
; ___ _ __ ___ __ _ ___ ___
; / _ \ '_ ` _ \ / _` |/ __/ __| ; / _ \ '_ ` _ \ / _` |/ __/ __|
; | __/ | | | | | (_| | (__\__ \ ; | __/ | | | | | (_| | (__\__ \
; \___|_| |_| |_|\__,_|\___|___/ ; \___|_| |_| |_|\__,_|\___|___/
@@ -11,8 +13,8 @@
(toggle-scroll-bar -1) ;; Or this (toggle-scroll-bar -1) ;; Or this
(setq inhibit-startup-screen t) ;; Leave me alone with your tutorials (setq inhibit-startup-screen t) ;; Leave me alone with your tutorials
(setq tramp-default-method "ssh") ;; speed up tramp mode (setq tramp-default-method "ssh") ;; speed up tramp mode
(setq initial-major-mode 'fundamental-mode ;; better startup speed (setq initial-major-mode 'fundamental-mode) ;; better startup speed
initial-scratch-message nil) (setq initial-scratch-message nil) ;; don't show me help at startup
;; Show matching paranthesis ;; Show matching paranthesis
(show-paren-mode t) (show-paren-mode t)
@@ -44,15 +46,15 @@
(require 'package) (require 'package)
(setq package-enable-at-startup nil) (setq package-enable-at-startup nil)
(setq package-archives '(("org" . "http://orgmode.org/elpa/") (setq package-archives '(("org" . "http://orgmode.org/elpa/")
("melpa" . "https://melpa.org/packages/") ("melpa" . "https://melpa.org/packages/")
("elpa" . "http://elpa.gnu.org/packages/") ("elpa" . "http://elpa.gnu.org/packages/")
)) ))
(package-initialize) (package-initialize)
;; Bootstrap `use-package' ;; Bootstrap `use-package'
(unless (package-installed-p 'use-package) ; unless it is already installed (unless (package-installed-p 'use-package) ; unless it is already installed
(package-refresh-contents) ; updage packages archive (package-refresh-contents) ; update packages archive
(package-install 'use-package)) ; and install the most recent version of use-package (package-install 'use-package)) ; and install the most recent version of use-package
(eval-when-compile (eval-when-compile
@@ -63,6 +65,7 @@
(use-package exec-path-from-shell (use-package exec-path-from-shell
:ensure t) :ensure t)
;; Use ssh agent from env
(exec-path-from-shell-copy-env "SSH_AGENT_PID") (exec-path-from-shell-copy-env "SSH_AGENT_PID")
(exec-path-from-shell-copy-env "SSH_AUTH_SOCK") (exec-path-from-shell-copy-env "SSH_AUTH_SOCK")