summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rw-r--r--.config/alacritty/alacritty.yml6
-rwxr-xr-x.config/autostart/setup.sh2
-rw-r--r--.config/qtile/config.py71
-rw-r--r--.config/qutebrowser/autoconfig.yml12
-rw-r--r--.config/qutebrowser/bookmarks/urls0
-rw-r--r--.config/qutebrowser/qsettings/QtProject.conf8
-rw-r--r--.config/qutebrowser/quickmarks0
7 files changed, 81 insertions, 18 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml
index 31e4248..a2fb161 100644
--- a/.config/alacritty/alacritty.yml
+++ b/.config/alacritty/alacritty.yml
@@ -117,7 +117,7 @@ font:
# - (macOS) Menlo
# - (Linux/BSD) monospace
# - (Windows) Consolas
- family: hack
+ family: mono
# The `style` can be specified to pick a specific face.
style: Regular
@@ -128,7 +128,7 @@ font:
#
# If the bold family is not specified, it will fall back to the
# value specified for the normal font.
- family: hack
+ family: mono
# The `style` can be specified to pick a specific face.
style: Bold
@@ -139,7 +139,7 @@ font:
#
# If the italic family is not specified, it will fall back to the
# value specified for the normal font.
- family: hack
+ family: mono
# The `style` can be specified to pick a specific face.
style: Italic
diff --git a/.config/autostart/setup.sh b/.config/autostart/setup.sh
index 524ad60..327c9db 100755
--- a/.config/autostart/setup.sh
+++ b/.config/autostart/setup.sh
@@ -2,4 +2,4 @@
emacs --daemon
setxkbmap -option caps:swapescape
-xrandr --output eDP1 --mode 1920x1080 --pos 0x0 --rotate normal --output DP1 --off --output DP2 --off --output HDMI1 --mode 1920x1080 --pos 0x0 --rotate normal --output HDMI2 --primary --mode 2560x1440 --pos 1920x0 --rotate normal --output VIRTUAL1 --off
+xrandr --output DisplayPort-0 --off --output DisplayPort-1 --off --output DisplayPort-2 --primary --mode 2560x1440 --pos 1920x0 --rotate normal --output HDMI-A-0 --mode 1920x1080 --pos 0x0 --rotate normal
diff --git a/.config/qtile/config.py b/.config/qtile/config.py
index b0f7fe8..c51aadf 100644
--- a/.config/qtile/config.py
+++ b/.config/qtile/config.py
@@ -33,7 +33,7 @@ import os
import re
import socket
import subprocess
-from typing import List # noqa: F401
+from typing import List
from libqtile import layout, bar, widget, hook
from libqtile.config import Click, Drag, Group, Key, Match, Screen, Rule
from libqtile.command import lazy
@@ -43,7 +43,7 @@ from libqtile.widget import Spacer
mod = "mod4"
mod1 = "alt"
mod2 = "control"
-image = '~/Pictures/symbols/arch-linux.png'
+image = '~/Pictures/medicine/caduceus-crystal.jpg'
@lazy.function
def window_to_prev_group(qtile):
@@ -173,14 +173,21 @@ keys = [
),
### Volume controls
Key([], "XF86AudioLowerVolume",
- lazy.spawn('amixer -D pulse sset Master 5%-'),
+ lazy.spawn('amixer sset Master 5%-'),
desc="Decrease volume"
),
Key([], "XF86AudioRaiseVolume",
- lazy.spawn('amixer -D pulse sset Master 5%+'),
+ lazy.spawn('amixer sset Master 5%+'),
desc="Increase volume"
),
- ]
+ ### Change languages
+ Key([mod], "F1",
+ lazy.spawn("setxkbmap us"),
+ desc= "change to US layout"),
+ Key([mod],"F2",
+ lazy.spawn("setxkbmap gr"),
+ desc= "change to greek layout"),
+ ]
@@ -265,7 +272,7 @@ def init_colors():
["#2F343F", "#2F343F"], # color 2
["#c0c5ce", "#c0c5ce"], # color 3
["#fba922", "#fba922"], # color 4
- ["#3384d0", "#3384d0"], # Blue
+ ["#3384d0", "#3384d0"], # Blue 5
["#f3f4f5", "#f3f4f5"], # color 6
["#cd1f3f", "#cd1f3f"], # color 7
["#62FF00", "#62FF00"], # color 8
@@ -348,14 +355,50 @@ def init_widgets_list():
foreground = colors[2],
background = colors[1]
),
- # widget.TextBox(
- # font="FontAwesome",
- # text="  ",
- # foreground=colors[4],
- # background=colors[1],
- # padding = 0,
- # fontsize=18
- # ),
+ widget.Net(
+ format='{interface}: U {up} D {down} T {total}'
+ ),
+ widget.Sep(
+ linewidth = 1,
+ padding = 10,
+ foreground = colors[2],
+ background = colors[1]
+ ),
+ widget.Memory(
+ measure_mem="G",
+ fontsize=15,
+ graph_color = colors[11]
+ ),
+ widget.MemoryGraph(),
+ widget.Sep(
+ linewidth = 1,
+ padding = 10,
+ foreground = colors[2],
+ background = colors[1]
+ ),
+ widget.ThermalSensor(
+ format='{tag}: {temp:.Of}{unit}',
+ threshold=50,
+ fontsize=15,
+ ),
+ widget.CPUGraph(
+ type='box',
+ graph_color = colors[5]
+ ),
+ widget.Sep(
+ linewidth = 1,
+ padding = 10,
+ foreground = colors[2],
+ background = colors[1]
+ ),
+ widget.TextBox(
+ font="FontAwesome",
+ text="  ",
+ foreground=colors[4],
+ background=colors[1],
+ padding = 0,
+ fontsize=18
+ ),
widget.Clock(
font='Mono',
foreground = colors[3],
diff --git a/.config/qutebrowser/autoconfig.yml b/.config/qutebrowser/autoconfig.yml
new file mode 100644
index 0000000..bf434cf
--- /dev/null
+++ b/.config/qutebrowser/autoconfig.yml
@@ -0,0 +1,12 @@
+# If a config.py file exists, this file is ignored unless it's explicitly loaded
+# via config.load_autoconfig(). For more information, see:
+# https://github.com/qutebrowser/qutebrowser/blob/master/doc/help/configuring.asciidoc#loading-autoconfigyml
+# DO NOT edit this file by hand, qutebrowser will overwrite it.
+# Instead, create a config.py - see :help for details.
+
+config_version: 2
+settings:
+ statusbar.show:
+ global: always
+ tabs.show:
+ global: always
diff --git a/.config/qutebrowser/bookmarks/urls b/.config/qutebrowser/bookmarks/urls
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/.config/qutebrowser/bookmarks/urls
diff --git a/.config/qutebrowser/qsettings/QtProject.conf b/.config/qutebrowser/qsettings/QtProject.conf
new file mode 100644
index 0000000..54e2f69
--- /dev/null
+++ b/.config/qutebrowser/qsettings/QtProject.conf
@@ -0,0 +1,8 @@
+[FileDialog]
+history=file:///home/apollo/Pictures/Screenshots
+lastVisited=file:///home/apollo/Pictures/Screenshots
+qtVersion=5.15.5
+shortcuts=file:, file:///home/apollo
+sidebarWidth=84
+treeViewHeader=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1\xb8\0\0\0\x4\x1\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\x4\0\0\0\xe8\0\0\0\x1\0\0\0\0\0\0\0\x36\0\0\0\x1\0\0\0\0\0\0\0:\0\0\0\x1\0\0\0\0\0\0\0`\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\xff\xff\xff\xff)
+viewMode=Detail
diff --git a/.config/qutebrowser/quickmarks b/.config/qutebrowser/quickmarks
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/.config/qutebrowser/quickmarks