Merge Arch config as main #1
7 changed files with 314 additions and 26 deletions
|
|
@ -18,7 +18,6 @@ packagesPacman=(
|
||||||
"gtk4"
|
"gtk4"
|
||||||
"thunar"
|
"thunar"
|
||||||
"kitty"
|
"kitty"
|
||||||
"wofi"
|
|
||||||
"waybar"
|
"waybar"
|
||||||
"grim"
|
"grim"
|
||||||
"slurp"
|
"slurp"
|
||||||
|
|
@ -27,6 +26,7 @@ packagesPacman=(
|
||||||
)
|
)
|
||||||
|
|
||||||
packagesYay=(
|
packagesYay=(
|
||||||
|
"rofi-lbonn-wayland-git"
|
||||||
"swaync"
|
"swaync"
|
||||||
"swww"
|
"swww"
|
||||||
"wlogout"
|
"wlogout"
|
||||||
|
|
|
||||||
|
|
@ -27,11 +27,11 @@ directories=(
|
||||||
"neofetch"
|
"neofetch"
|
||||||
"nvim"
|
"nvim"
|
||||||
"pipewire"
|
"pipewire"
|
||||||
|
"rofi"
|
||||||
"swappy"
|
"swappy"
|
||||||
"swaync"
|
"swaync"
|
||||||
"wal"
|
"wal"
|
||||||
"waybar"
|
"waybar"
|
||||||
"wofi"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
_symlinkDirs() {
|
_symlinkDirs() {
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ source = ~/.cache/wal/colors-hyprland.conf
|
||||||
# Set programs that you use
|
# Set programs that you use
|
||||||
$terminal = kitty
|
$terminal = kitty
|
||||||
$fileManager = Thunar
|
$fileManager = Thunar
|
||||||
$menu = wofi --show drun
|
$menu = rofi -show drun
|
||||||
$lockScreen = hyprlock
|
$lockScreen = hyprlock
|
||||||
|
|
||||||
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
||||||
|
|
|
||||||
246
rofi/config.rasi
Normal file
246
rofi/config.rasi
Normal file
|
|
@ -0,0 +1,246 @@
|
||||||
|
|
||||||
|
|
||||||
|
/* ---- Configuration ---- */
|
||||||
|
configuration {
|
||||||
|
modi: "drun,run";
|
||||||
|
font: "JetBrains Mono";
|
||||||
|
show-icons: true;
|
||||||
|
icon-theme: "kora";
|
||||||
|
display-drun: "APPS";
|
||||||
|
display-run: "RUN";
|
||||||
|
display-filebrowser: "FILES";
|
||||||
|
display-window: "WINDOW";
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
hover-select: true;
|
||||||
|
me-select-entry: "";
|
||||||
|
me-accept-entry: "MousePrimary";
|
||||||
|
window-format: "{w} · {c} · {t}";
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@import "~/.cache/wal/colors-rofi-pywal.rasi"
|
||||||
|
|
||||||
|
* { border-width: 3px; }
|
||||||
|
|
||||||
|
/* ---- Window ---- */
|
||||||
|
window {
|
||||||
|
width: 900px;
|
||||||
|
x-offset: 0px;
|
||||||
|
y-offset: 0px;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
color: #FFFFFF;
|
||||||
|
border: @border-width;
|
||||||
|
border-color: @foreground;
|
||||||
|
cursor: "default";
|
||||||
|
transparency: "real";
|
||||||
|
location: center;
|
||||||
|
anchor: center;
|
||||||
|
fullscreen: false;
|
||||||
|
enabled: true;
|
||||||
|
border-radius: 10px;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ---- Mainbox ---- */
|
||||||
|
mainbox {
|
||||||
|
enabled: true;
|
||||||
|
orientation: horizontal;
|
||||||
|
spacing: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
background-color: @background;
|
||||||
|
background-image: @current-image;
|
||||||
|
children: ["imagebox","listbox"];
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ---- Imagebox ---- */
|
||||||
|
imagebox {
|
||||||
|
padding: 18px;
|
||||||
|
background-color: transparent;
|
||||||
|
orientation: vertical;
|
||||||
|
children: [ "inputbar", "dummy", "mode-switcher" ];
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ---- Listbox ---- */
|
||||||
|
listbox {
|
||||||
|
spacing: 20px;
|
||||||
|
background-color: transparent;
|
||||||
|
orientation: vertical;
|
||||||
|
children: [ "message", "listview" ];
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ---- Dummy ---- */
|
||||||
|
dummy {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ---- Inputbar ---- */
|
||||||
|
inputbar {
|
||||||
|
enabled: true;
|
||||||
|
text-color: @foreground;
|
||||||
|
spacing: 10px;
|
||||||
|
padding: 15px;
|
||||||
|
border-radius: 10px;
|
||||||
|
border-color: @foreground;
|
||||||
|
background-color: @background;
|
||||||
|
children: [ "textbox-prompt-colon", "entry" ];
|
||||||
|
}
|
||||||
|
|
||||||
|
textbox-prompt-colon {
|
||||||
|
enabled: true;
|
||||||
|
expand: false;
|
||||||
|
str: "";
|
||||||
|
padding: 0px 5px 0px 0px;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
entry {
|
||||||
|
enabled: true;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
cursor: text;
|
||||||
|
placeholder: "Search";
|
||||||
|
placeholder-color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ---- Mode Switcher ---- */
|
||||||
|
mode-switcher{
|
||||||
|
enabled: true;
|
||||||
|
spacing: 20px;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
padding: 10px;
|
||||||
|
border-radius: 10px;
|
||||||
|
background-color: @background;
|
||||||
|
text-color: inherit;
|
||||||
|
cursor: pointer;
|
||||||
|
border: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
button selected {
|
||||||
|
background-color: @color11;
|
||||||
|
text-color: @foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ---- Listview ---- */
|
||||||
|
listview {
|
||||||
|
enabled: true;
|
||||||
|
columns: 1;
|
||||||
|
lines: 8;
|
||||||
|
cycle: true;
|
||||||
|
dynamic: true;
|
||||||
|
scrollbar: false;
|
||||||
|
layout: vertical;
|
||||||
|
reverse: false;
|
||||||
|
fixed-height: true;
|
||||||
|
fixed-columns: true;
|
||||||
|
spacing: 0px;
|
||||||
|
padding: 10px;
|
||||||
|
margin: 0px;
|
||||||
|
background-color: @background;
|
||||||
|
border:0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ---- Element ---- */
|
||||||
|
element {
|
||||||
|
enabled: true;
|
||||||
|
padding: 10px;
|
||||||
|
margin: 5px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: @background;
|
||||||
|
border-radius: 10px;
|
||||||
|
border: @border-width;
|
||||||
|
}
|
||||||
|
|
||||||
|
element normal.normal {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: @foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
element normal.urgent {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: @foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
element normal.active {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: @foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @color11;
|
||||||
|
text-color: @foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
element selected.urgent {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: @foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
element selected.active {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: @foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
element alternate.normal {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: @foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
element alternate.urgent {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: @foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
element alternate.active {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: @foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
element-icon {
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
size: 32px;
|
||||||
|
cursor: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
element-text {
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
cursor: inherit;
|
||||||
|
vertical-align: 0.5;
|
||||||
|
horizontal-align: 0.0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*****----- Message -----*****/
|
||||||
|
message {
|
||||||
|
background-color: transparent;
|
||||||
|
border:0px;
|
||||||
|
margin:20px 0px 0px 0px;
|
||||||
|
padding:0px;
|
||||||
|
spacing:0px;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
textbox {
|
||||||
|
padding: 15px;
|
||||||
|
margin: 0px;
|
||||||
|
border-radius: 0px;
|
||||||
|
background-color: @background;
|
||||||
|
text-color: @foreground;
|
||||||
|
vertical-align: 0.5;
|
||||||
|
horizontal-align: 0.0;
|
||||||
|
}
|
||||||
|
|
||||||
|
error-message {
|
||||||
|
padding: 15px;
|
||||||
|
border-radius: 20px;
|
||||||
|
background-color: @background;
|
||||||
|
text-color: @foreground;
|
||||||
|
}
|
||||||
|
|
||||||
22
wal/templates/colors-rofi-pywal.rasi
Normal file
22
wal/templates/colors-rofi-pywal.rasi
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
* {{
|
||||||
|
current-image: {wallpaper};
|
||||||
|
background: {background};
|
||||||
|
foreground: {foreground};
|
||||||
|
color0: {color0};
|
||||||
|
color1: {color1};
|
||||||
|
color2: {color2};
|
||||||
|
color3: {color3};
|
||||||
|
color4: {color4};
|
||||||
|
color5: {color5};
|
||||||
|
color6: {color6};
|
||||||
|
color7: {color7};
|
||||||
|
color8: {color8};
|
||||||
|
color9: {color9};
|
||||||
|
color10: {color10};
|
||||||
|
color11: {color11};
|
||||||
|
color12: {color12};
|
||||||
|
color13: {color13};
|
||||||
|
color14: {color14};
|
||||||
|
color15: {color15};
|
||||||
|
}}
|
||||||
|
|
||||||
20
wofi/config
Normal file
20
wofi/config
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
hide_scroll=true
|
||||||
|
width=25%
|
||||||
|
lines=11
|
||||||
|
line_wrap=word
|
||||||
|
term=alacritty
|
||||||
|
allow_markup=true
|
||||||
|
always_parse_args=false
|
||||||
|
show_all=true
|
||||||
|
print_command=true
|
||||||
|
layer=overlay
|
||||||
|
allow_images=true
|
||||||
|
sort_order=default
|
||||||
|
gtk_dark=true
|
||||||
|
prompt=Search...
|
||||||
|
image_size=32
|
||||||
|
display_generic=false
|
||||||
|
location=center
|
||||||
|
key_expand=Tab
|
||||||
|
insensitive=false
|
||||||
|
single_click=true
|
||||||
|
|
@ -4,14 +4,13 @@
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@import url('../../.cache/wal/colors-waybar.css');
|
||||||
|
|
||||||
#window {
|
#window {
|
||||||
background-color: black;
|
background-color: --background;
|
||||||
color: --wofi-color2;
|
color: --color2;
|
||||||
border: 1px solid #2255dd;
|
border: 2px solid --color4;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
opacity: 0.8;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#outer-box {
|
#outer-box {
|
||||||
|
|
@ -19,8 +18,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#input {
|
#input {
|
||||||
background-color: --wofi-color1;
|
background-color: var(--color5);
|
||||||
border: 0px solid --wofi-color3;
|
border: 0px solid --color2;
|
||||||
padding: 8px 12px;
|
padding: 8px 12px;
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
}
|
}
|
||||||
|
|
@ -50,7 +49,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#entry:selected {
|
#entry:selected {
|
||||||
background-color: --wofi-color3;
|
background-color: @color7;
|
||||||
color: --wofi-color0;
|
color: --wofi-color0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -60,6 +59,7 @@
|
||||||
#selected {
|
#selected {
|
||||||
}
|
}
|
||||||
|
|
||||||
#input, #entry:selected {
|
#input,
|
||||||
|
#entry:selected {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue