mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 03:12:24 +00:00
asdf
This commit is contained in:
parent
61ba8ea65c
commit
2c09cb4666
11 changed files with 120 additions and 25 deletions
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"optOut": false,
|
||||
"lastUpdateCheck": 1591345578701
|
||||
"lastUpdateCheck": 1591520965287
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
fish_vi_key_bindings
|
||||
# fish_default_key_bindings
|
||||
|
||||
set -U FZF_TMUX 1
|
||||
#set -U FZF_TMUX 1
|
||||
set -U FZF_DEFAULT_COMMANDS "--filepath-word --cycle"
|
||||
set -U FZF_PREVIEW_FILE_CMD "head -n 10 | bat --color=always --decorations=never"
|
||||
set -U fish_greeting
|
||||
|
@ -17,10 +17,10 @@ abbr --add --global tsh trash
|
|||
abbr --add --global cxmonad "nvim /home/leon/.xmonad/lib/Config.hs"
|
||||
|
||||
|
||||
if status is-interactive
|
||||
and not set -q TMUX
|
||||
exec tmux
|
||||
end
|
||||
#if status is-interactive
|
||||
#and not set -q TMUX
|
||||
#exec tmux
|
||||
#end
|
||||
|
||||
abbr --add --global gaa "git add --all"
|
||||
abbr --add --global gc "git commit -m "
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
.termite {
|
||||
padding: 15px;
|
||||
}
|
||||
vte-terminal {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
@import 'colors.css';
|
|
@ -1,9 +1,9 @@
|
|||
[xin_1]
|
||||
file=/home/leon/Bilder/wallpapers/abstract-barb-wires-blur-close-up-116021.jpg
|
||||
file=/home/leon/Bilder/wallpapers/girl.png
|
||||
mode=5
|
||||
bgcolor=#000000
|
||||
|
||||
[xin_0]
|
||||
file=/home/leon/Bilder/wallpapers/abstract-barb-wires-blur-close-up-116021.jpg
|
||||
file=/home/leon/Bilder/wallpapers/girl.png
|
||||
mode=5
|
||||
bgcolor=#000000
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
[geometry]
|
||||
posx=20
|
||||
posy=50
|
||||
sizex=2516
|
||||
sizey=1006
|
||||
posy=1130
|
||||
sizex=1250
|
||||
sizey=1370
|
||||
|
||||
[nitrogen]
|
||||
view=icon
|
||||
|
|
|
@ -61,21 +61,21 @@ shadow-ignore-shaped = false;
|
|||
inactive-opacity = 1;
|
||||
active-opacity = 1;
|
||||
frame-opacity = 1;
|
||||
inactive-opacity-override = false;
|
||||
#inactive-opacity-override = true;
|
||||
|
||||
# Dim inactive windows. (0.0 - 1.0)
|
||||
# inactive-dim = 0.2;
|
||||
inactive-dim = 1;
|
||||
# Do not let dimness adjust based on window opacity.
|
||||
# inactive-dim-fixed = true;
|
||||
#inactive-dim-fixed = true;
|
||||
# Blur background of transparent windows. Bad performance with X Render backend. GLX backend is preferred.
|
||||
|
||||
blur-background = false;
|
||||
#blur-method = "dual_kawase";
|
||||
#blur-method = "kernel";
|
||||
blur-strength = 10; # max 20
|
||||
blur-strength = 20; # max 20
|
||||
blur-size = 20;
|
||||
# Blur background of opaque windows with transparent frames as well.
|
||||
#blur-background-frame = true;
|
||||
blur-background-frame = false;
|
||||
# Do not let blur radius adjust based on window opacity.
|
||||
blur-background-fixed = false;
|
||||
blur-background-exclude = [
|
||||
|
|
Binary file not shown.
|
@ -69,6 +69,7 @@ import qualified System.IO as SysIO
|
|||
import qualified XMonad.Actions.Navigation2D as Nav2d
|
||||
import qualified XMonad.Config.Desktop as Desktop
|
||||
import qualified XMonad.Hooks.EwmhDesktops as Ewmh
|
||||
import XMonad.Hooks.FadeInactive
|
||||
import qualified XMonad.Hooks.ManageHelpers as ManageHelpers
|
||||
import XMonad.Hooks.DebugStack ( debugStackString
|
||||
, debugStackFullString
|
||||
|
@ -91,7 +92,8 @@ import qualified XMonad.Layout.PerScreen as PerScreen
|
|||
|
||||
myModMask = mod4Mask
|
||||
myLauncher = Rofi.asCommand (def { Rofi.theme = Rofi.bigTheme }) ["-show run"]
|
||||
myTerminal = "termite --name törminell"
|
||||
--myTerminal = "termite --name törminell"
|
||||
myTerminal = "alacritty"
|
||||
myBrowser = "qutebrowser"
|
||||
useSharedWorkspaces = False
|
||||
--myBrowser = "google-chrome-stable"
|
||||
|
@ -318,14 +320,14 @@ myKeys = concat [ zoomRowBindings, tabbedBindings, multiMonitorBindings, program
|
|||
, ("M-S-C-q", io exitSuccess)
|
||||
|
||||
-- Binary space partitioning
|
||||
, ("M-<Backspace>", sendMessage Swap)
|
||||
, ("M-M1-<Backspace>", sendMessage Rotate)
|
||||
, ("M-<Delete>", sendMessage Swap)
|
||||
, ("M-M1-<Delete>", sendMessage Rotate)
|
||||
|
||||
-- Media
|
||||
, ("<XF86AudioRaiseVolume>", spawn "amixer sset Master 5%+")
|
||||
, ("<XF86AudioLowerVolume>", spawn "amixer sset Master 5%-")
|
||||
, ("M-S-C-,", (notify "hi" (show $ map (\(a, _) -> show a) workspaceBindings)) >> (notify "ho" (show removedKeys)))
|
||||
, ("M-<Delete>", spawn "flash_window")
|
||||
, ("M-<Backspace>", spawn "flash_window")
|
||||
, ("M-g", incScreenWindowSpacing 5)
|
||||
, ("M-S-g", decScreenWindowSpacing 5)
|
||||
]
|
||||
|
@ -483,9 +485,9 @@ main = do
|
|||
then (map show [1..9 :: Int]) ++ ["NSP"]
|
||||
else (withScreens (fromIntegral currentScreenCount) (map show [1..6 :: Int])) ++ ["NSP"]
|
||||
, modMask = myModMask
|
||||
, borderWidth = 2
|
||||
, borderWidth = 1
|
||||
, layoutHook = myLayout
|
||||
, logHook = polybarLogHooks <+> logHook Desktop.desktopConfig <+> logHook def
|
||||
, logHook = polybarLogHooks <+> logHook Desktop.desktopConfig <+> fadeInactiveLogHook 1 <+> logHook def
|
||||
, startupHook = myStartupHook <+> return () >> checkKeymap myConfig myKeys
|
||||
, manageHook = manageSpawn <+> myManageHook <+> manageHook def
|
||||
, focusedBorderColor = aqua
|
||||
|
|
|
@ -222,5 +222,5 @@ div[class*="chat"] div[class*="root"] {
|
|||
}
|
||||
|
||||
div[class*="chat"] div[class*="root"] canvas {
|
||||
border-radius: 20px;
|
||||
/*border-radius: 20px;*/
|
||||
}
|
||||
|
|
90
files/ddg_darktheme.css
Normal file
90
files/ddg_darktheme.css
Normal file
|
@ -0,0 +1,90 @@
|
|||
*,
|
||||
div[class*="result"],
|
||||
.result__snippet b,
|
||||
.result__date {
|
||||
color: #ebdbb2 !important;
|
||||
font-family: "xos4 terminus" !important;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
#duckbar a.zcm__link {
|
||||
border-bottom-color: #ebdbb2 !important;
|
||||
}
|
||||
|
||||
.switch__knob {
|
||||
background-color: #ebdbb2 !important;
|
||||
}
|
||||
|
||||
a.result__url > * {
|
||||
color: #83a598 !important;
|
||||
font-family: "cozette" !important
|
||||
}
|
||||
a.result__a {
|
||||
font-size: 1.2rem !important;
|
||||
font-family: "xos4 terminus" !important;
|
||||
}
|
||||
|
||||
|
||||
div.header-wrap,
|
||||
.site-wrapper {
|
||||
box-shadow: none;
|
||||
background-color: #282828 !important;
|
||||
}
|
||||
|
||||
.header__logo {
|
||||
filter: sepia(80%);
|
||||
}
|
||||
|
||||
form#search_form {
|
||||
background-color: #202020 !important;
|
||||
box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.3);
|
||||
border: none;
|
||||
transition: box-shadow 0.1s ease-in-out;
|
||||
}
|
||||
|
||||
div.result {
|
||||
transition: box-shadow 0.1s ease-in-out;
|
||||
}
|
||||
div.result.highlight {
|
||||
box-shadow: 0 0 5px 0 rgba(0,0,0,0.3) !important;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
form#search_form > input {
|
||||
z-index: 10 !important;
|
||||
background-color: #202020 !important;
|
||||
}
|
||||
|
||||
form#search_form input[type="submit"], form#search_form input[type="button"] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#search_form.search--focus, #search_form.search--hover {
|
||||
box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
|
||||
#search_form.search--focus, #search_form.search--hover #search_button {
|
||||
background-color: #202020;
|
||||
}
|
||||
|
||||
.search__autocomplete {
|
||||
transform: translateY(15px);
|
||||
z-index: 5 !important;
|
||||
border: none;
|
||||
padding-right: 2px;
|
||||
background-color: #202020;
|
||||
box-shadow: 0 0 20px 0 rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
.search__autocomplete > * {
|
||||
background-color: #202020;
|
||||
}
|
||||
.search__autocomplete > * .t-normal {
|
||||
color: #a89984 !important;
|
||||
}
|
||||
|
||||
.search__autocomplete >*>:not(.t-normal) {
|
||||
font-weight: normal !important;
|
||||
color: #ebdbb2 !important;
|
||||
}
|
|
@ -1,6 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
|
||||
to_file=0
|
||||
fullscreen=0
|
||||
for arg in "$@"; do
|
||||
|
|
Loading…
Reference in a new issue