mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-12-25 05:42:22 +00:00
asdf
This commit is contained in:
parent
5c9c295d89
commit
637af563bf
4 changed files with 14 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"optOut": false,
|
||||
"lastUpdateCheck": 1605554831715
|
||||
"lastUpdateCheck": 1605901143177
|
||||
}
|
|
@ -111,7 +111,8 @@ import qualified Data.List.NonEmpty
|
|||
myModMask = mod4Mask
|
||||
myLauncher = Rofi.asCommand def ["-show run"]
|
||||
--myTerminal = "termite --name törminell"
|
||||
myTerminal = "alacritty"
|
||||
--myTerminal = "alacritty"
|
||||
myTerminal = "st"
|
||||
myBrowser = "qutebrowser"
|
||||
useSharedWorkspaces = False
|
||||
--myBrowser = "google-chrome-stable"
|
||||
|
@ -241,7 +242,8 @@ myStartupHook = do
|
|||
spawnOnce "xsetroot -cursor_name left_ptr"
|
||||
spawnOnce "xrdb -merge ~/.Xresources"
|
||||
io $ threadDelay $ 1000 * 100
|
||||
spawnOnce "/home/leon/Downloads/picom --config /home/leon/.config/picom.conf --experimental-backends --backend xrender" --no-fading-openclose"
|
||||
--spawnOnce "/home/leon/Downloads/picom --config /home/leon/.config/picom.conf --experimental-backends --backend xrender" --no-fading-openclose"
|
||||
spawnOnce "picom --config /home/leon/.config/picom.conf --experimental-backends --backend glx" --no-fading-openclose"
|
||||
spawn "/home/leon/.config/polybar/launch.sh"
|
||||
spawnOnce "nitrogen --restore"
|
||||
spawnOnce "mailnag"
|
||||
|
@ -343,7 +345,7 @@ myKeys = concat [ zoomRowBindings, tabbedBindings, multiMonitorBindings, program
|
|||
--, ("M-b", launchWithBackgroundInstance (className =? "qutebrowser") "bwrap --bind / / --dev-bind /dev /dev --tmpfs /tmp --tmpfs /run qutebrowser")
|
||||
--, ("M-b", safeSpawnProg "qutebrowser")
|
||||
, ("M-b", safeSpawnProg "firefox")
|
||||
, ("M-S-<Return>", spawn "alacritty")
|
||||
, ("M-S-<Return>", spawn myTerminal)
|
||||
--, ("M-S-<Return>", launchWithBackgroundInstance (className =? "Alacritty") "alacritty")
|
||||
, ("M-S-<", spawn "flameshot gui")
|
||||
|
||||
|
@ -608,7 +610,10 @@ fullscreenFixEventHook _ = return $ All True
|
|||
|
||||
|
||||
|
||||
|
||||
foo :: X ()
|
||||
foo = do
|
||||
x <- ask
|
||||
pure ()
|
||||
|
||||
|
||||
-- POLYBAR Kram -------------------------------------- {{{
|
||||
|
|
|
@ -97,7 +97,7 @@ in
|
|||
"Xft.rgba" = "rgb";
|
||||
"Xft.lcdfilter" = "lcddefault";
|
||||
|
||||
"st.font" = "Terminus (TTF):pixelsize=12";
|
||||
"st.font" = "Terminus (TTF):pixelsize=16";
|
||||
"*.background" = primary.background;
|
||||
"*.foreground" = primary.foreground;
|
||||
"*.color0" = normal.black;
|
||||
|
|
3
files/scripts/0x0.sh
Executable file
3
files/scripts/0x0.sh
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
[ -f "${1}" ] && op=cat
|
||||
${op:-echo} "${1:-`cat -`}" | curl -sF f='@-' -F expire=129600 'https://oshi.at' | tail -n 1 | cut -d ' ' -f 2 | tee /dev/stderr | xclip -sel clip
|
Loading…
Reference in a new issue